Home | History | Annotate | Download | only in opengl

Lines Matching refs:isInt

52 	bool		isInt	= false;
63 isInt = true;
67 isInt = false;
76 case TextureFormat::R: format = isInt ? GL_RED_INTEGER : GL_RED; break;
77 case TextureFormat::RG: format = isInt ? GL_RG_INTEGER : GL_RG; break;
78 case TextureFormat::RGB: format = isInt ? GL_RGB_INTEGER : GL_RGB; break;
79 case TextureFormat::RGBA: format = isInt ? GL_RGBA_INTEGER : GL_RGBA; break;
89 DE_ASSERT(!isInt);