mesa: whitespace clean-ups in dlist.h
[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 *
9 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included
19 * in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
25 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
26 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
27 * OTHER DEALINGS IN THE SOFTWARE.
28 */
29
30
31
32 #ifndef DLIST_H
33 #define DLIST_H
34
35 #include <stdio.h>
36 #include "main/mtypes.h"
37
38
39 GLboolean GLAPIENTRY
40 _mesa_IsList(GLuint list);
41
42 void GLAPIENTRY
43 _mesa_DeleteLists(GLuint list, GLsizei range);
44
45 GLuint GLAPIENTRY
46 _mesa_GenLists(GLsizei range);
47
48 void GLAPIENTRY
49 _mesa_NewList(GLuint name, GLenum mode);
50
51 void GLAPIENTRY
52 _mesa_EndList(void);
53
54 void GLAPIENTRY
55 _mesa_CallList(GLuint list);
56
57 void GLAPIENTRY
58 _mesa_CallLists(GLsizei n, GLenum type, const GLvoid *lists);
59
60 void GLAPIENTRY
61 _mesa_ListBase(GLuint base);
62
63 struct gl_display_list *
64 _mesa_lookup_list(struct gl_context *ctx, GLuint list);
65
66 void
67 _mesa_compile_error(struct gl_context *ctx, GLenum error, const char *s);
68
69 void *
70 _mesa_dlist_alloc(struct gl_context *ctx, GLuint opcode, GLuint sz);
71
72 void *
73 _mesa_dlist_alloc_aligned(struct gl_context *ctx, GLuint opcode, GLuint bytes);
74
75 GLint
76 _mesa_dlist_alloc_opcode(struct gl_context *ctx, GLuint sz,
77 void (*execute)(struct gl_context *, void *),
78 void (*destroy)(struct gl_context *, void *),
79 void (*print)(struct gl_context *, void *, FILE *));
80
81 void
82 _mesa_delete_list(struct gl_context *ctx, struct gl_display_list *dlist);
83
84 void
85 _mesa_initialize_save_table(const struct gl_context *);
86
87 void
88 _mesa_install_dlist_vtxfmt(struct _glapi_table *disp,
89 const GLvertexformat *vfmt);
90
91 void
92 _mesa_init_display_list(struct gl_context * ctx);
93
94 void
95 _mesa_free_display_list_data(struct gl_context *ctx);
96
97
98 #endif /* DLIST_H */