Changeset 3597 for trunk/src/opengl/mesa/vertices.h
- Timestamp:
- May 23, 2000, 10:35:01 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/vertices.h
r2962 r3597 1 /* $Id: vertices.h,v 1. 2 2000-03-01 18:49:39jeroen Exp $ */1 /* $Id: vertices.h,v 1.3 2000-05-23 20:35:00 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. … … 29 29 #define VERTICES_H_ 30 30 31 #ifdef USE_X86_ASM 32 #define _PROJAPI _ASMAPI 33 #define _PROJAPIP _ASMAPIP 34 #else 35 #define _PROJAPI 36 #define _PROJAPIP * 37 #endif 31 38 32 typedef void ( * __cdeclgl_transform_func)( GLfloat *first_vert,39 typedef void (_PROJAPIP gl_transform_func)( GLfloat *first_vert, 33 40 const GLfloat *m, 34 41 const GLfloat *src, … … 36 43 GLuint count ); 37 44 38 typedef void ( * __cdeclgl_cliptest_func)( GLfloat *first_vert,39 GLfloat *last_vert, /* use count instead? 45 typedef void (_PROJAPIP gl_cliptest_func)( GLfloat *first_vert, 46 GLfloat *last_vert, /* use count instead?*/ 40 47 GLubyte *or_mask, 41 48 GLubyte *and_mask, 42 49 GLubyte *clip_mask ); 43 50 44 typedef void ( *gl_project_clipped_func)( GLfloat *first,45 46 47 48 51 typedef void (_PROJAPIP gl_project_clipped_func)( GLfloat *first, 52 GLfloat *last, 53 const GLfloat *m, 54 GLuint stride, 55 const GLubyte *clipmask ); 49 56 50 typedef void ( *gl_project_func)( GLfloat *first,51 52 53 57 typedef void (_PROJAPIP gl_project_func)( GLfloat *first, 58 GLfloat *last, 59 const GLfloat *m, 60 GLuint stride ); 54 61 55 62 … … 57 64 */ 58 65 extern gl_transform_func gl_xform_points3_v16_general; 59 extern gl_cliptest_func gl_cliptest_points4_v16; 60 extern gl_project_clipped_func gl_project_clipped_v16; 61 extern gl_project_func gl_project_v16; 66 extern gl_cliptest_func gl_cliptest_points4_v16; 67 extern gl_project_clipped_func gl_project_clipped_v16; 68 extern gl_project_func gl_project_v16; 62 69 63 70 … … 67 74 68 75 typedef void (*gl_vertex_interp_func)( GLfloat t, 69 70 71 72 76 GLfloat *result, 77 const GLfloat *in, 78 const GLfloat *out ); 79 73 80 74 81 #endif
Note:
See TracChangeset
for help on using the changeset viewer.