Ignore:
Timestamp:
Mar 1, 2000, 7:50:02 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

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 sandervl Exp $ */
     1/* $Id: vertices.c,v 1.2 2000-03-01 18:49:39 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;
     
    122122      if (!*clipmask) {
    123123         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;
     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.