Lines Matching defs:texName
1646 GLuint texName, bool no_error, bool is_ext_dsa,
1654 /* EXT_dsa allows proxy targets only when texName is 0 */
1655 if (texName != 0) {
1679 if (texName == 0) {
1684 newTexObj = _mesa_lookup_texture(ctx, texName);
1707 newTexObj = _mesa_new_texture_object(ctx, texName, target);
1714 _mesa_HashInsert(ctx->Shared->TexObjects, texName, newTexObj, false);
1729 * \param texName texture name.
1733 bind_texture(struct gl_context *ctx, GLenum target, GLuint texName,
1737 _mesa_lookup_or_create_texture(ctx, target, texName, no_error, false,
1746 _mesa_BindTexture_no_error(GLenum target, GLuint texName)
1749 bind_texture(ctx, target, texName, ctx->Texture.CurrentUnit, true,
1755 _mesa_BindTexture(GLenum target, GLuint texName)
1761 _mesa_enum_to_string(target), (GLint) texName);
1763 bind_texture(ctx, target, texName, ctx->Texture.CurrentUnit, false,
1973 * \param texName texture names.
1982 _mesa_PrioritizeTextures( GLsizei n, const GLuint *texName,
2003 if (texName[i] > 0) {
2004 struct gl_texture_object *t = _mesa_lookup_texture(ctx, texName[i]);
2018 * \param texName array with the texture names.
2027 _mesa_AreTexturesResident(GLsizei n, const GLuint *texName,
2043 if (!texName || !residences)
2049 if (texName[i] == 0) {
2053 t = _mesa_lookup_texture(ctx, texName[i]);