Modified Files:
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>
Wed, 22 Nov 2000 08:42:14 +0000 (08:42 +0000)
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>
Wed, 22 Nov 2000 08:42:14 +0000 (08:42 +0000)
  Mesa/src/descrip.mms Mesa/src/swrast/s_lines.c

 VMS compile support
 Added some Type casts to avoid warnings
----------------------------------------------------------------------

src/mesa/main/descrip.mms
src/mesa/swrast/s_lines.c

index d38160848d1a4cc40342f289899ad2e7cc3c9fa5..eff2bd406c727054f935b5ec93f82f6e01d36078 100644 (file)
@@ -520,4 +520,3 @@ imports.obj : imports.c
 [.math]m_xform.obj : [.math]m_xform.c
        $(CC) $(CFLAGS) /obj=[.math]m_xform.obj [.math]m_xform.c
 
-.include mms_depend.
index e4cc074b6dfefb121f7332e624f3e181c5a85af1..bec818c2494684455e94c7055eab2d179b4e48a1 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: s_lines.c,v 1.7 2000/11/19 23:10:26 brianp Exp $ */
+/* $Id: s_lines.c,v 1.8 2000/11/22 08:42:15 joukj Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -586,7 +586,7 @@ static void flat_textured_line( GLcontext *ctx,
    GLfloat *pbs = PB->s[0];
    GLfloat *pbt = PB->t[0];
    GLfloat *pbu = PB->u[0];
-   GLchan *color = vert0->color;
+   GLchan *color = (GLchan*) vert0->color;
    PB_SET_COLOR( PB, color[0], color[1], color[2], color[3] );
    count = PB->count;
 
@@ -827,7 +827,7 @@ static void flat_multitextured_line( GLcontext *ctx,
    GLfixed *pbfog = PB->fog;
    GLchan (*pbrgba)[4] = PB->rgba;
    GLchan (*pbspec)[3] = PB->spec;
-   GLchan *color = vert0->color;
+   GLchan *color = (GLchan*) vert0->color;
    GLchan sRed   = vert0->specular[0];
    GLchan sGreen = vert0->specular[1];
    GLchan sBlue  = vert0->specular[2];