Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RenderSystems/GLES2/src/OgreGLES2PixelFormat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ namespace Ogre {
GLenum GLES2PixelUtil::getClosestGLImageInternalFormat(PixelFormat format)
{
GLenum GLformat = getGLImageInternalFormat(format);
return (format == GL_NONE ? GL_RGBA8 : GLformat);
return (GLformat == GL_NONE ? GL_RGBA8 : GLformat);
}
//-----------------------------------------------------------------------------
PixelFormat GLES2PixelUtil::getClosestOGREFormat(GLenum fmt, GLenum dataType)
Expand Down