Changeset 3597 for trunk/src/opengl/mesa/texobj.h
- Timestamp:
- May 23, 2000, 10:35:01 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/texobj.h
r2938 r3597 1 /* $Id: texobj.h,v 1. 1 2000-02-29 00:48:39 sandervlExp $ */1 /* $Id: texobj.h,v 1.2 2000-05-23 20:34:57 jeroen Exp $ */ 2 2 3 3 /* 4 4 * Mesa 3-D graphics library 5 * Version: 3. 15 * Version: 3.3 6 6 * 7 7 * Copyright (C) 1999 Brian Paul All Rights Reserved. … … 60 60 */ 61 61 62 extern void gl_GenTextures( GLcontext *ctx, GLsizei n, GLuint *textures ); 62 extern void 63 _mesa_GenTextures( GLsizei n, GLuint *textures ); 63 64 64 65 65 extern void gl_DeleteTextures( GLcontext *ctx,66 66 extern void 67 _mesa_DeleteTextures( GLsizei n, const GLuint *textures); 67 68 68 69 69 extern void gl_BindTexture( GLcontext *ctx, GLenum target, GLuint texture ); 70 extern void 71 _mesa_BindTexture( GLenum target, GLuint texture ); 70 72 71 73 72 extern void gl_PrioritizeTextures( GLcontext *ctx,73 74 74 extern void 75 _mesa_PrioritizeTextures( GLsizei n, const GLuint *textures, 76 const GLclampf *priorities ); 75 77 76 78 77 extern GLboolean gl_AreTexturesResident( GLcontext *ctx, GLsizei n,78 79 79 extern GLboolean 80 _mesa_AreTexturesResident( GLsizei n, const GLuint *textures, 81 GLboolean *residences ); 80 82 81 83 82 extern GLboolean gl_IsTexture( GLcontext *ctx, GLuint texture ); 84 extern GLboolean 85 _mesa_IsTexture( GLuint texture ); 83 86 84 87
Note:
See TracChangeset
for help on using the changeset viewer.