Lines Matching defs:origtexture
662 "glTextureView(origtexture width (%d) != height (%d))",
709 _mesa_TextureView_no_error(GLuint texture, GLenum target, GLuint origtexture,
719 origTexObj = _mesa_lookup_texture(ctx, origtexture);
727 _mesa_TextureView(GLuint texture, GLenum target, GLuint origtexture,
740 texture, _mesa_enum_to_string(target), origtexture,
744 if (origtexture == 0) {
745 _mesa_error(ctx, GL_INVALID_VALUE, "glTextureView(origtexture = %u)",
746 origtexture);
751 origTexObj = _mesa_lookup_texture(ctx, origtexture);
753 /* If <origtexture> is not the name of a texture, INVALID_VALUE
757 _mesa_error(ctx, GL_INVALID_VALUE, "glTextureView(origtexture = %u)",
758 origtexture);
762 /* If <origtexture>'s TEXTURE_IMMUTABLE_FORMAT value is not TRUE,
767 "glTextureView(origtexture not immutable)");
801 /* minlevel and minlayer are relative to the view of origtexture.
831 "glTextureView(internalformat %s not compatible with origtexture %s)",