Examples of Blur


Examples of com.bitfire.postprocessing.filters.Blur

  public CrtMonitor (int fboWidth, int fboHeight, boolean barrelDistortion, boolean performBlur, RgbMode mode, int effectsSupport) {
    doblur = performBlur;

    if (doblur) {
      pingPongBuffer = PostProcessor.newPingPongBuffer(fboWidth, fboHeight, PostProcessor.getFramebufferFormat(), false);
      blur = new Blur(fboWidth, fboHeight);
      blur.setPasses(1);
      blur.setAmount(1f);
      // blur.setType( BlurType.Gaussian3x3b ); // high defocus
      blur.setType(BlurType.Gaussian3x3); // modern machines defocus
    } else {
View Full Code Here

Examples of com.bitfire.postprocessing.filters.Blur

  private int sfactor, dfactor;

  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

Examples of com.blitline.image.functions.Blur

  public static BashScript runBashScript(String script) {
    return new BashScript(script);
  }

  public static Blur blur() {
    return new Blur();
  }
View Full Code Here

Examples of com.blitline.image.functions.Blur

  public static BashScript runBashScript(String script) {
    return new BashScript(script);
  }

  public static Blur blur() {
    return new Blur();
  }
View Full Code Here

Examples of com.blitline.image.functions.Blur

  public static BashScript runBashScript(String script) {
    return new BashScript(script);
  }

  public static Blur blur() {
    return new Blur();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.