Changeset 3582 for trunk/src/opengl/mesa/clip.h
- Timestamp:
- May 21, 2000, 10:57:14 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/clip.h
r2938 r3582 1 /* $Id: clip.h,v 1. 1 2000-02-29 00:48:26 sandervlExp $ */1 /* $Id: clip.h,v 1.2 2000-05-21 20:14:08 jeroen Exp $ */ 2 2 3 3 /* … … 40 40 # define GL_VIEWCLIP_POINT( V ) gl_viewclip_point( V ) 41 41 #else 42 # define GL_VIEWCLIP_POINT( V ) 43 ( (V)[0] <= (V)[3] && (V)[0] >= -(V)[3] 44 && (V)[1] <= (V)[3] && (V)[1] >= -(V)[3] 42 # define GL_VIEWCLIP_POINT( V ) \ 43 ( (V)[0] <= (V)[3] && (V)[0] >= -(V)[3] \ 44 && (V)[1] <= (V)[3] && (V)[1] >= -(V)[3] \ 45 45 && (V)[2] <= (V)[3] && (V)[2] >= -(V)[3] ) 46 46 #endif … … 64 64 65 65 66 extern void gl_ClipPlane( GLcontext* ctx, 67 GLenum plane, const GLfloat *equation ); 66 extern void _mesa_ClipPlane( GLenum plane, const GLdouble *equation ); 68 67 69 extern void gl_GetClipPlane( GLcontext* ctx, 70 GLenum plane, GLdouble *equation ); 68 extern void _mesa_GetClipPlane( GLenum plane, GLdouble *equation ); 71 69 72 70
Note:
See TracChangeset
for help on using the changeset viewer.