diff options
Diffstat (limited to 'xc/extras/Mesa/src/attrib.h')
-rw-r--r-- | xc/extras/Mesa/src/attrib.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/xc/extras/Mesa/src/attrib.h b/xc/extras/Mesa/src/attrib.h index 9cb246243..a4efcf674 100644 --- a/xc/extras/Mesa/src/attrib.h +++ b/xc/extras/Mesa/src/attrib.h @@ -1,10 +1,9 @@ -/* $Id: attrib.h,v 1.1.1.1 2000/01/06 13:26:44 faith Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.1 + * Version: 3.3 * - * Copyright (C) 1999 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -25,9 +24,6 @@ */ - - - #ifndef ATTRIB_H #define ATTRIB_h @@ -35,13 +31,17 @@ #include "types.h" -extern void gl_PushAttrib( GLcontext* ctx, GLbitfield mask ); +extern void +_mesa_PushAttrib( GLbitfield mask ); -extern void gl_PopAttrib( GLcontext* ctx ); +extern void +_mesa_PopAttrib( void ); -extern void gl_PushClientAttrib( GLcontext *ctx, GLbitfield mask ); +extern void +_mesa_PushClientAttrib( GLbitfield mask ); -extern void gl_PopClientAttrib( GLcontext *ctx ); +extern void +_mesa_PopClientAttrib( void ); #endif |