mesa: Restore 78-column wrapping of license text in C-style comments.
[mesa.git] / src / mesa / main / dlist.h
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 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
26 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31
32
33 #ifndef DLIST_H
34 #define DLIST_H
35
36
37 #include "main/mtypes.h"
38
39
40 #define _MESA_INIT_DLIST_VTXFMT(vfmt, impl) \
41 do { \
42 (vfmt)->CallList = impl ## CallList; \
43 (vfmt)->CallLists = impl ## CallLists; \
44 } while (0)
45
46 GLboolean GLAPIENTRY
47 _mesa_IsList(GLuint list);
48 void GLAPIENTRY
49 _mesa_DeleteLists(GLuint list, GLsizei range);
50 GLuint GLAPIENTRY
51 _mesa_GenLists(GLsizei range);
52 void GLAPIENTRY
53 _mesa_NewList(GLuint name, GLenum mode);
54 void GLAPIENTRY
55 _mesa_EndList(void);
56 void GLAPIENTRY
57 _mesa_CallList( GLuint list );
58 void GLAPIENTRY
59 _mesa_CallLists( GLsizei n, GLenum type, const GLvoid *lists );
60 void GLAPIENTRY
61 _mesa_ListBase(GLuint base);
62
63
64 extern void _mesa_compile_error( struct gl_context *ctx, GLenum error, const char *s );
65
66 extern void *_mesa_dlist_alloc(struct gl_context *ctx, GLuint opcode, GLuint sz);
67
68 extern GLint _mesa_dlist_alloc_opcode( struct gl_context *ctx, GLuint sz,
69 void (*execute)( struct gl_context *, void * ),
70 void (*destroy)( struct gl_context *, void * ),
71 void (*print)( struct gl_context *, void * ) );
72
73 extern void _mesa_delete_list(struct gl_context *ctx, struct gl_display_list *dlist);
74
75 extern void _mesa_initialize_save_table(const struct gl_context *);
76
77 extern void _mesa_install_dlist_vtxfmt(struct _glapi_table *disp,
78 const GLvertexformat *vfmt);
79
80 extern void _mesa_init_display_list( struct gl_context * ctx );
81
82 extern void _mesa_free_display_list_data(struct gl_context *ctx);
83
84
85 #endif /* DLIST_H */