Lines Matching defs:origtexture
659 "glTextureView(origtexture width (%d) != height (%d))",
705 _mesa_TextureView_no_error(GLuint texture, GLenum target, GLuint origtexture,
715 origTexObj = _mesa_lookup_texture(ctx, origtexture);
723 _mesa_TextureView(GLuint texture, GLenum target, GLuint origtexture,
736 texture, _mesa_enum_to_string(target), origtexture,
740 if (origtexture == 0) {
741 _mesa_error(ctx, GL_INVALID_VALUE, "glTextureView(origtexture = %u)",
742 origtexture);
747 origTexObj = _mesa_lookup_texture(ctx, origtexture);
749 /* If <origtexture> is not the name of a texture, INVALID_VALUE
753 _mesa_error(ctx, GL_INVALID_VALUE, "glTextureView(origtexture = %u)",
754 origtexture);
758 /* If <origtexture>'s TEXTURE_IMMUTABLE_FORMAT value is not TRUE,
763 "glTextureView(origtexture not immutable)");
797 /* minlevel and minlayer are relative to the view of origtexture.
823 "glTextureView(internalformat %s not compatible with origtexture %s)",