Package com.bitfire.postprocessing.filters

Examples of com.bitfire.postprocessing.filters.Vignetting


  public Vignette (int viewportWidth, int viewportHeight, boolean controlSaturation) {
    this.controlSaturation = controlSaturation;
    oneOnW = 1f / (float)viewportWidth;
    oneOnH = 1f / (float)viewportHeight;
    vignetting = new Vignetting(controlSaturation);
  }
View Full Code Here

TOP

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

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.