Changeset 3597 for trunk/src/opengl/mesa/span.h
- Timestamp:
- May 23, 2000, 10:35:01 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/span.h
r2938 r3597 1 /* $Id: span.h,v 1. 1 2000-02-29 00:48:38 sandervlExp $ */1 /* $Id: span.h,v 1.2 2000-05-23 20:34:56 jeroen Exp $ */ 2 2 3 3 /* … … 38 38 extern void gl_write_index_span( GLcontext *ctx, 39 39 GLuint n, GLint x, GLint y, const GLdepth z[], 40 40 GLuint index[], GLenum primitive ); 41 41 42 42 … … 44 44 GLuint n, GLint x, GLint y, 45 45 const GLdepth z[], 46 46 GLuint index, GLenum primitive ); 47 47 48 48 … … 61 61 GLuint n, GLint x, GLint y, 62 62 const GLdepth z[], 63 63 const GLfloat s[], const GLfloat t[], 64 64 const GLfloat u[], GLfloat lambda[], 65 65 GLubyte rgba[][4], CONST GLubyte spec[][4], 66 66 GLenum primitive ); 67 67 68 68 69 extern void gl_write_multitexture_span( GLcontext *ctx, GLuint texSets, 70 GLuint n, GLint x, GLint y, 71 const GLdepth z[], 72 CONST GLfloat s[][MAX_WIDTH], 73 CONST GLfloat t[][MAX_WIDTH], 74 CONST GLfloat u[][MAX_WIDTH], 75 GLfloat lambda[][MAX_WIDTH], 76 GLubyte rgba[][4], 77 CONST GLubyte spec[][4], 78 GLenum primitive ); 69 extern void 70 gl_write_multitexture_span( GLcontext *ctx, GLuint texSets, 71 GLuint n, GLint x, GLint y, 72 const GLdepth z[], 73 CONST GLfloat s[MAX_TEXTURE_UNITS][MAX_WIDTH], 74 CONST GLfloat t[MAX_TEXTURE_UNITS][MAX_WIDTH], 75 CONST GLfloat u[MAX_TEXTURE_UNITS][MAX_WIDTH], 76 GLfloat lambda[MAX_TEXTURE_UNITS][MAX_WIDTH], 77 GLubyte rgba[][4], 78 CONST GLubyte spec[][4], 79 GLenum primitive ); 79 80 80 81 81 extern void gl_read_rgba_span( GLcontext *ctx, 82 extern void gl_read_rgba_span( GLcontext *ctx, GLframebuffer *buffer, 82 83 GLuint n, GLint x, GLint y, 83 84 GLubyte rgba[][4] ); 84 85 85 86 86 extern void gl_read_index_span( GLcontext *ctx, 87 extern void gl_read_index_span( GLcontext *ctx, GLframebuffer *buffer, 87 88 GLuint n, GLint x, GLint y, GLuint indx[] ); 88 89
Note:
See TracChangeset
for help on using the changeset viewer.