本文整理了Java中com.jme3.system.AppSettings.setGammaCorrection()
方法的一些代码示例,展示了AppSettings.setGammaCorrection()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AppSettings.setGammaCorrection()
方法的具体详情如下:
包路径:com.jme3.system.AppSettings
类名称:AppSettings
方法名:setGammaCorrection
[英]Enables Gamma Correction This requires that the GPU supports GL_ARB_framebuffer_sRGB and will disabled otherwise.
[中]启用Gamma校正这要求GPU支持GL_ARB_framebuffer_sRGB,否则将禁用。
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
source.setFullscreen(fullscreen);
source.setVSync(vsync);
source.setGammaCorrection(gamma);
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
public static void main(String[] args){
TestToneMapFilter app = new TestToneMapFilter();
AppSettings settings = new AppSettings(true);
// Must turn on gamma correction, as otherwise it looks too dark.
settings.setGammaCorrection(true);
app.setSettings(settings);
app.start();
}
代码示例来源:origin: us.ihmc.thirdparty.jme/jme3-desktop
source.setFullscreen(fullscreen);
source.setVSync(vsync);
source.setGammaCorrection(gamma);
内容来源于网络,如有侵权,请联系作者删除!