added GL_SGIX/SGIS_pixel_texture
[mesa.git] / src / mesa / main / attrib.h
index 0661c2612304412ce073bd90ae71e436c0018cce..22e667bde0db41d901a679d0d39dc17833980625 100644 (file)
@@ -1,10 +1,10 @@
-/* $Id: attrib.h,v 1.1 1999/08/19 00:55:41 jtg Exp $ */
+/* $Id: attrib.h,v 1.3 2000/02/02 22:03:31 brianp 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 +25,6 @@
  */
 
 
-
-
-
 #ifndef ATTRIB_H
 #define ATTRIB_h
 
 #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