Lines Matching refs:internalformat
1119 void GLClientState::setBoundTextureInternalFormat(GLenum target, GLint internalformat) { in setBoundTextureInternalFormat() argument
1123 texrec->internalformat = internalformat; in setBoundTextureInternalFormat()
1222 static bool unreliableInternalFormat(GLenum internalformat) { in unreliableInternalFormat() argument
1223 switch (internalformat) { in unreliableInternalFormat()
1232 (GLenum target, GLint level, GLenum internalformat) { in writeCopyTexImageState() argument
1233 if (unreliableInternalFormat(internalformat)) { in writeCopyTexImageState()
1238 entry.internalformat = internalformat; in writeCopyTexImageState()
1257 (GLenum target, GLint level, GLenum internalformat) { in copyTexImageNeededTarget() argument
1258 if (unreliableInternalFormat(internalformat)) { in copyTexImageNeededTarget()
1266 query.internalformat = internalformat; in copyTexImageNeededTarget()
1277 (GLenum target, GLint level, GLenum internalformat) { in copyTexImageLuminanceCubeMapAMDWorkaround() argument
1278 writeCopyTexImageState(target, level, internalformat); in copyTexImageLuminanceCubeMapAMDWorkaround()
1279 return copyTexImageNeededTarget(target, level, internalformat); in copyTexImageLuminanceCubeMapAMDWorkaround()
1435 return texrec->internalformat; in queryTexInternalFormat()