Browse Source

- fix HDRRenderer on OSX

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8261 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
nor..67 14 years ago
parent
commit
fdd29d7be3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      engine/src/desktop-fx/com/jme3/post/HDRRenderer.java

+ 1 - 1
engine/src/desktop-fx/com/jme3/post/HDRRenderer.java

@@ -302,7 +302,7 @@ public class HDRRenderer implements SceneProcessor {
         // loadInitial()
         fsQuad = new Picture("HDR Fullscreen Quad");
 
-        Format lumFmt = Format.Luminance8;
+        Format lumFmt = Format.RGB8;
         scene64FB = new FrameBuffer(64, 64, 1);
         scene64 = new Texture2D(64, 64, lumFmt);
         scene64FB.setColorTexture(scene64);