diff --git a/src/OpenGl/OpenGl_FrameBuffer.cxx b/src/OpenGl/OpenGl_FrameBuffer.cxx index c18551c9aa..ef3cdf6acd 100644 --- a/src/OpenGl/OpenGl_FrameBuffer.cxx +++ b/src/OpenGl/OpenGl_FrameBuffer.cxx @@ -96,17 +96,19 @@ namespace return true; } case GL_RGBA8: - { - thePixelFormat = GL_RGBA; - theDataType = GL_UNSIGNED_INT; - return true; - } case GL_RGBA: { thePixelFormat = GL_RGBA; theDataType = GL_UNSIGNED_BYTE; return true; } + case GL_RGB8: + case GL_RGB: + { + thePixelFormat = GL_RGB; + theDataType = GL_UNSIGNED_BYTE; + return true; + } } return false; }