dlist.h revision 4a49301e
1/**
2 * \file dlist.h
3 * Display lists management.
4 */
5
6/*
7 * Mesa 3-D graphics library
8 * Version:  6.5.1
9 *
10 * Copyright (C) 1999-2006  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 "main/mtypes.h"
37
38
39#if FEATURE_dlist
40
41#define _MESA_INIT_DLIST_FUNCTIONS(driver, impl)               \
42   do {                                                        \
43      (driver)->NewList           = impl ## NewList;           \
44      (driver)->EndList           = impl ## EndList;           \
45      (driver)->BeginCallList     = impl ## BeginCallList;     \
46      (driver)->EndCallList       = impl ## EndCallList;       \
47      (driver)->SaveFlushVertices = impl ## SaveFlushVertices; \
48      (driver)->NotifySaveBegin   = impl ## NotifyBegin;       \
49   } while (0)
50
51#define _MESA_INIT_DLIST_VTXFMT(vfmt, impl)  \
52   do {                                      \
53      (vfmt)->CallList  = impl ## CallList;  \
54      (vfmt)->CallLists = impl ## CallLists; \
55   } while (0)
56
57extern void GLAPIENTRY _mesa_CallList( GLuint list );
58
59extern void GLAPIENTRY _mesa_CallLists( GLsizei n, GLenum type, const GLvoid *lists );
60
61
62extern void _mesa_compile_error( GLcontext *ctx, GLenum error, const char *s );
63
64extern void *_mesa_dlist_alloc(GLcontext *ctx, GLuint opcode, GLuint sz);
65
66extern GLint _mesa_dlist_alloc_opcode( GLcontext *ctx, GLuint sz,
67                                       void (*execute)( GLcontext *, void * ),
68                                       void (*destroy)( GLcontext *, void * ),
69                                       void (*print)( GLcontext *, void * ) );
70
71extern void _mesa_delete_list(GLcontext *ctx, struct gl_display_list *dlist);
72
73extern void _mesa_save_vtxfmt_init( GLvertexformat *vfmt );
74
75extern void _mesa_init_save_table( struct _glapi_table *table );
76
77extern void _mesa_install_dlist_vtxfmt(struct _glapi_table *disp,
78                                       const GLvertexformat *vfmt);
79
80extern void _mesa_init_dlist_dispatch(struct _glapi_table *disp);
81
82#else /* FEATURE_dlist */
83
84#define _MESA_INIT_DLIST_FUNCTIONS(driver, impl) do { } while (0)
85#define _MESA_INIT_DLIST_VTXFMT(vfmt, impl) do { } while (0)
86
87static INLINE void
88_mesa_delete_list(GLcontext *ctx, struct gl_display_list *dlist)
89{
90   /* there should be no list to delete */
91   ASSERT_NO_FEATURE();
92}
93
94static INLINE void
95_mesa_install_dlist_vtxfmt(struct _glapi_table *disp,
96                           const GLvertexformat *vfmt)
97{
98}
99
100static INLINE void
101_mesa_init_dlist_dispatch(struct _glapi_table *disp)
102{
103}
104
105#endif /* FEATURE_dlist */
106
107extern void _mesa_init_display_list( GLcontext * ctx );
108
109extern void _mesa_free_display_list_data(GLcontext *ctx);
110
111
112#endif /* DLIST_H */
113