Changeset 2962 for trunk/src/opengl/mesa/vertices.c
- Timestamp:
- Mar 1, 2000, 7:50:02 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/vertices.c
r2938 r2962 1 /* $Id: vertices.c,v 1. 1 2000-02-29 00:50:15 sandervlExp $ */1 /* $Id: vertices.c,v 1.2 2000-03-01 18:49:39 jeroen Exp $ */ 2 2 3 3 /* … … 68 68 69 69 70 static void transform_v16(GLfloat *f,71 72 73 74 70 static void __cdecl transform_v16(GLfloat *f, 71 const GLfloat *m, 72 const GLfloat *obj, 73 GLuint obj_stride, 74 GLuint count ) 75 75 { 76 76 GLuint i; … … 122 122 if (!*clipmask) { 123 123 const GLfloat oow = 1.0F / f[3]; 124 125 126 127 124 f[0] = sx * f[0] * oow + tx; 125 f[1] = sy * f[1] * oow + ty; 126 f[2] = sz * f[2] * oow + tz; 127 f[3] = oow; 128 128 } 129 129 } … … 133 133 134 134 135 static void cliptest_v16( GLfloat *first,136 137 138 139 140 { 135 static void __cdecl cliptest_v16( GLfloat *first, 136 GLfloat *last, 137 GLubyte *p_clipOr, 138 GLubyte *p_clipAnd, 139 GLubyte *clipmask ) 140 { 141 141 GLubyte clipAnd = (GLubyte) ~0; 142 142 GLubyte clipOr = 0;
Note:
See TracChangeset
for help on using the changeset viewer.