com.jme3.system.AppSettings.setGammaCorrection()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(112)

本文整理了Java中com.jme3.system.AppSettings.setGammaCorrection()方法的一些代码示例,展示了AppSettings.setGammaCorrection()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AppSettings.setGammaCorrection()方法的具体详情如下:
包路径:com.jme3.system.AppSettings
类名称:AppSettings
方法名:setGammaCorrection

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);

相关文章

AppSettings类方法