Ignore:
Timestamp:
May 21, 2000, 10:57:14 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

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 sandervl Exp $ */
     1/* $Id: clip.h,v 1.2 2000-05-21 20:14:08 jeroen Exp $ */
    22
    33/*
     
    4040#  define GL_VIEWCLIP_POINT( V )   gl_viewclip_point( V )
    4141#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]         \
    4545       && (V)[2] <= (V)[3] && (V)[2] >= -(V)[3] )
    4646#endif
     
    6464
    6565
    66 extern void gl_ClipPlane( GLcontext* ctx,
    67                           GLenum plane, const GLfloat *equation );
     66extern void _mesa_ClipPlane( GLenum plane, const GLdouble *equation );
    6867
    69 extern void gl_GetClipPlane( GLcontext* ctx,
    70                              GLenum plane, GLdouble *equation );
     68extern void _mesa_GetClipPlane( GLenum plane, GLdouble *equation );
    7169
    7270
Note: See TracChangeset for help on using the changeset viewer.