test version of startmenu root with big icons
[reactos.git] / reactos / lib / mesa32 / src / main / dlist.h
1 /**
2 * \file dlist.h
3 * Display lists management.
4 */
5
6 /*
7 * Mesa 3-D graphics library
8 * Version: 5.1
9 *
10 * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included
20 * in all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
26 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
27 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 */
29
30
31
32 #ifndef DLIST_H
33 #define DLIST_H
34
35
36 #include "mtypes.h"
37
38
39 #if _HAVE_FULL_GL
40
41 extern void _mesa_init_lists( void );
42
43 extern void _mesa_destroy_list( GLcontext *ctx, GLuint list );
44
45 extern void GLAPIENTRY _mesa_CallList( GLuint list );
46
47 extern void GLAPIENTRY _mesa_CallLists( GLsizei n, GLenum type, const GLvoid *lists );
48
49 extern void GLAPIENTRY _mesa_DeleteLists( GLuint list, GLsizei range );
50
51 extern void GLAPIENTRY _mesa_EndList( void );
52
53 extern GLuint GLAPIENTRY _mesa_GenLists( GLsizei range );
54
55 extern GLboolean GLAPIENTRY _mesa_IsList( GLuint list );
56
57 extern void GLAPIENTRY _mesa_ListBase( GLuint base );
58
59 extern void GLAPIENTRY _mesa_NewList( GLuint list, GLenum mode );
60
61 extern void _mesa_init_dlist_table( struct _glapi_table *table,
62 GLuint tableSize );
63
64 extern void _mesa_save_error( GLcontext *ctx, GLenum error, const char *s );
65
66 extern void _mesa_compile_error( GLcontext *ctx, GLenum error, const char *s );
67
68
69 extern void *_mesa_alloc_instruction( GLcontext *ctx, int opcode, GLint sz );
70
71 extern GLint _mesa_alloc_opcode( GLcontext *ctx, GLuint sz,
72 void (*execute)( GLcontext *, void * ),
73 void (*destroy)( GLcontext *, void * ),
74 void (*print)( GLcontext *, void * ) );
75
76 extern void GLAPIENTRY _mesa_save_EvalMesh2(GLenum mode, GLint i1, GLint i2,
77 GLint j1, GLint j2 );
78 extern void GLAPIENTRY _mesa_save_EvalMesh1( GLenum mode, GLint i1, GLint i2 );
79 extern void GLAPIENTRY _mesa_save_CallLists( GLsizei n, GLenum type, const GLvoid *lists );
80 extern void GLAPIENTRY _mesa_save_CallList( GLuint list );
81 extern void _mesa_init_display_list( GLcontext * ctx );
82 extern void _mesa_save_vtxfmt_init( GLvertexformat *vfmt );
83
84
85 #else
86
87 /** No-op */
88 #define _mesa_init_lists() ((void)0)
89
90 /** No-op */
91 #define _mesa_destroy_list(c,l) ((void)0)
92
93 /** No-op */
94 #define _mesa_init_dlist_table(t,ts) ((void)0)
95
96 /** No-op */
97 #define _mesa_init_display_list(c) ((void)0)
98
99 /** No-op */
100 #define _mesa_save_vtxfmt_init(v) ((void)0)
101
102 #endif
103
104 #endif