Ignore:
Timestamp:
Mar 1, 2000, 11:45:30 PM (26 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/mesa/3dfx/vertices.c

    r2938 r2965  
    1 /* $Id: vertices.c,v 1.1 2000-02-29 00:46:30 sandervl Exp $ */
     1/* $Id: vertices.c,v 1.2 2000-03-01 22:45:30 jeroen Exp $ */
    22
    33/*
     
    6868
    6969
    70 static void transform_v16(GLfloat *f,
    71                           const GLfloat *m,
    72                           const GLfloat *obj,
    73                           GLuint obj_stride,
    74                           GLuint count )
     70static void __cdecl transform_v16(GLfloat *f,
     71                          const GLfloat *m,
     72                          const GLfloat *obj,
     73                          GLuint obj_stride,
     74                          GLuint count )
    7575{
    7676   GLuint i;
     
    9090 */
    9191static void project_verts(GLfloat *first,
    92                           GLfloat *last,
    93                           const GLfloat *m,
    94                           GLuint stride )
     92                          GLfloat *last,
     93                          const GLfloat *m,
     94                          GLuint stride )
    9595{
    9696   const GLfloat sx = m[0], sy = m[5], sz = m[10];
     
    109109
    110110static void project_clipped_verts(GLfloat *first,
    111                                   GLfloat *last,
    112                                   const GLfloat *m,
    113                                   GLuint stride,
    114                                   const GLubyte *clipmask )
     111                                  GLfloat *last,
     112                                  const GLfloat *m,
     113                                  GLuint stride,
     114                                  const GLubyte *clipmask )
    115115{
    116116   const GLfloat sx = m[0], sy = m[5], sz = m[10];
     
    121121   {
    122122      if (!*clipmask) {
    123         const GLfloat oow = 1.0F / f[3];
    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;
     123        const GLfloat oow = 1.0F / f[3];
     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;
    128128      }
    129129   }
     
    133133
    134134
    135 static void cliptest_v16( GLfloat *first,
    136                           GLfloat *last,
    137                           GLubyte *p_clipOr,
    138                           GLubyte *p_clipAnd,
    139                           GLubyte *clipmask )
    140 {       
     135static void __cdecl cliptest_v16( GLfloat *first,
     136                          GLfloat *last,
     137                          GLubyte *p_clipOr,
     138                          GLubyte *p_clipAnd,
     139                          GLubyte *clipmask )
     140{
    141141   GLubyte clipAnd = (GLubyte) ~0;
    142142   GLubyte clipOr = 0;
Note: See TracChangeset for help on using the changeset viewer.