Package com.bitfire.postprocessing.filters

Examples of com.bitfire.postprocessing.filters.Threshold


  public Bloom (int fboWidth, int fboHeight) {
    pingPongBuffer = PostProcessor.newPingPongBuffer(fboWidth, fboHeight, PostProcessor.getFramebufferFormat(), false);

    blur = new Blur(fboWidth, fboHeight);
    threshold = new Threshold();
    combine = new Combine();

    setSettings(new Settings("default", 2, 0.277f, 1f, .85f, 1.1f, .85f));
  }
View Full Code Here

TOP

Related Classes of com.bitfire.postprocessing.filters.Threshold

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.