diff options
author | Karl Schultz <[email protected]> | 2001-09-20 20:47:26 +0000 |
---|---|---|
committer | Karl Schultz <[email protected]> | 2001-09-20 20:47:26 +0000 |
commit | 8674e709ee401e0fd69b2108e02af0c9d60c4367 (patch) | |
tree | 24cd1f2f8476fdb7e23e949b4d8f48117639cf32 /include/GL/glu.h | |
parent | 62eb2e59097da8b0ec312d64363e0a12b55db7b4 (diff) |
Change UnProject4 prototype to use nearVal and farVal instead of near
and far because Windows compiler can get confused over these old keywords.
Diffstat (limited to 'include/GL/glu.h')
-rw-r--r-- | include/GL/glu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/GL/glu.h b/include/GL/glu.h index 4049eed22aa..4de6965c702 100644 --- a/include/GL/glu.h +++ b/include/GL/glu.h @@ -314,7 +314,7 @@ GLAPI void GLAPIENTRY gluTessNormal (GLUtesselator* tess, GLdouble valueX, GLdou GLAPI void GLAPIENTRY gluTessProperty (GLUtesselator* tess, GLenum which, GLdouble data); GLAPI void GLAPIENTRY gluTessVertex (GLUtesselator* tess, GLdouble *location, GLvoid* data); GLAPI GLint GLAPIENTRY gluUnProject (GLdouble winX, GLdouble winY, GLdouble winZ, const GLdouble *model, const GLdouble *proj, const GLint *view, GLdouble* objX, GLdouble* objY, GLdouble* objZ); -GLAPI GLint GLAPIENTRY gluUnProject4 (GLdouble winX, GLdouble winY, GLdouble winZ, GLdouble clipW, const GLdouble *model, const GLdouble *proj, const GLint *view, GLdouble near, GLdouble far, GLdouble* objX, GLdouble* objY, GLdouble* objZ, GLdouble* objW); +GLAPI GLint GLAPIENTRY gluUnProject4 (GLdouble winX, GLdouble winY, GLdouble winZ, GLdouble clipW, const GLdouble *model, const GLdouble *proj, const GLint *view, GLdouble nearVal, GLdouble farVal, GLdouble* objX, GLdouble* objY, GLdouble* objZ, GLdouble* objW); #ifdef __cplusplus } |