Ignore:
Timestamp:
Feb 9, 2000, 9:51:20 AM (26 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/glut/glut_shapes.c

    r2595 r2689  
    1 
     1/* $Id: glut_shapes.c,v 1.2 2000-02-09 08:46:16 jeroen Exp $ */
    22/* Copyright (c) Mark J. Kilgard, 1994, 1997. */
    33
     
    7070{
    7171  QUAD_OBJ_INIT();
    72   gluQuadricDrawStyle(quadObj, GLU_LINE);
    73   gluQuadricNormals(quadObj, GLU_SMOOTH);
     72  gluQuadricDrawStyle(quadObj, (GLenum)GLU_LINE);
     73  gluQuadricNormals(quadObj, (GLenum)GLU_SMOOTH);
    7474  /* If we ever changed/used the texture or orientation state
    7575     of quadObj, we'd need to change it to the defaults here
     
    8282{
    8383  QUAD_OBJ_INIT();
    84   gluQuadricDrawStyle(quadObj, GLU_FILL);
    85   gluQuadricNormals(quadObj, GLU_SMOOTH);
     84  gluQuadricDrawStyle(quadObj, (GLenum)GLU_FILL);
     85  gluQuadricNormals(quadObj, (GLenum)GLU_SMOOTH);
    8686  /* If we ever changed/used the texture or orientation state
    8787     of quadObj, we'd need to change it to the defaults here
     
    9595{
    9696  QUAD_OBJ_INIT();
    97   gluQuadricDrawStyle(quadObj, GLU_LINE);
    98   gluQuadricNormals(quadObj, GLU_SMOOTH);
     97  gluQuadricDrawStyle(quadObj, (GLenum)GLU_LINE);
     98  gluQuadricNormals(quadObj, (GLenum)GLU_SMOOTH);
    9999  /* If we ever changed/used the texture or orientation state
    100100     of quadObj, we'd need to change it to the defaults here
     
    108108{
    109109  QUAD_OBJ_INIT();
    110   gluQuadricDrawStyle(quadObj, GLU_FILL);
    111   gluQuadricNormals(quadObj, GLU_SMOOTH);
     110  gluQuadricDrawStyle(quadObj, (GLenum)GLU_FILL);
     111  gluQuadricNormals(quadObj, (GLenum)GLU_SMOOTH);
    112112  /* If we ever changed/used the texture or orientation state
    113113     of quadObj, we'd need to change it to the defaults here
Note: See TracChangeset for help on using the changeset viewer.