Merge branch 'new-frag-attribs'
[mesa.git] / progs / util / glstate.h
1
2 /*
3 * Print GL state information (for debugging)
4 * Copyright (C) 1998 Brian Paul
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
15 *
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the Free
18 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21
22 /*
23 * Revision 1.1 1999/08/19 00:55:42 jtg
24 * Initial revision
25 *
26 * Revision 1.2 1999/06/19 01:36:43 brianp
27 * more features added
28 *
29 * Revision 1.1 1998/11/24 03:41:16 brianp
30 * Initial revision
31 *
32 */
33
34
35 #ifndef GLSTATE_H
36 #define GLSTATE_H
37
38
39 #include <GL/gl.h>
40
41
42 extern const char *GetNameString( GLenum var );
43
44 extern void PrintState( int indent, GLenum var );
45
46 extern void PrintAttribState( GLbitfield attrib );
47
48 extern void PrintPixelStoreState( void );
49
50
51 #endif