1 | /* $Id: varray.h,v 1.2 2000-05-23 20:34:59 jeroen Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Mesa 3-D graphics library
|
---|
5 | * Version: 3.1
|
---|
6 | *
|
---|
7 | * Copyright (C) 1999 Brian Paul All Rights Reserved.
|
---|
8 | *
|
---|
9 | * Permission is hereby granted, free of charge, to any person obtaining a
|
---|
10 | * copy of this software and associated documentation files (the "Software"),
|
---|
11 | * to deal in the Software without restriction, including without limitation
|
---|
12 | * the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
---|
13 | * and/or sell copies of the Software, and to permit persons to whom the
|
---|
14 | * Software is furnished to do so, subject to the following conditions:
|
---|
15 | *
|
---|
16 | * The above copyright notice and this permission notice shall be included
|
---|
17 | * in all copies or substantial portions of the Software.
|
---|
18 | *
|
---|
19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
---|
20 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
21 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
---|
22 | * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
---|
23 | * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
---|
24 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | #ifndef VARRAY_H
|
---|
29 | #define VARRAY_H
|
---|
30 |
|
---|
31 |
|
---|
32 | #include "types.h"
|
---|
33 |
|
---|
34 |
|
---|
35 | extern void
|
---|
36 | _mesa_VertexPointer(GLint size, GLenum type, GLsizei stride,
|
---|
37 | const GLvoid *ptr);
|
---|
38 |
|
---|
39 |
|
---|
40 | extern void
|
---|
41 | _mesa_NormalPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
|
---|
42 |
|
---|
43 |
|
---|
44 | extern void
|
---|
45 | _mesa_ColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
|
---|
46 |
|
---|
47 |
|
---|
48 | extern void
|
---|
49 | _mesa_IndexPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
|
---|
50 |
|
---|
51 |
|
---|
52 | extern void
|
---|
53 | _mesa_TexCoordPointer(GLint size, GLenum type, GLsizei stride,
|
---|
54 | const GLvoid *ptr);
|
---|
55 |
|
---|
56 |
|
---|
57 | extern void
|
---|
58 | _mesa_EdgeFlagPointer(GLsizei stride, const GLvoid *ptr);
|
---|
59 |
|
---|
60 |
|
---|
61 | extern void
|
---|
62 | _mesa_ArrayElement( GLint );
|
---|
63 |
|
---|
64 |
|
---|
65 | extern void
|
---|
66 | _mesa_DrawArrays(GLenum mode, GLint first, GLsizei count);
|
---|
67 |
|
---|
68 |
|
---|
69 | extern void
|
---|
70 | _mesa_save_DrawArrays(GLenum mode, GLint first, GLsizei count);
|
---|
71 |
|
---|
72 |
|
---|
73 | extern void
|
---|
74 | _mesa_DrawElements(GLenum mode, GLsizei count, GLenum type,
|
---|
75 | const GLvoid *indices);
|
---|
76 |
|
---|
77 |
|
---|
78 | extern void
|
---|
79 | _mesa_save_DrawElements(GLenum mode, GLsizei count,
|
---|
80 | GLenum type, const GLvoid *indices);
|
---|
81 |
|
---|
82 |
|
---|
83 | extern void
|
---|
84 | _mesa_InterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer);
|
---|
85 |
|
---|
86 | extern void
|
---|
87 | _mesa_save_InterleavedArrays(GLenum format, GLsizei stride,
|
---|
88 | const GLvoid *pointer);
|
---|
89 |
|
---|
90 |
|
---|
91 | extern void
|
---|
92 | _mesa_DrawRangeElements(GLenum mode, GLuint start,
|
---|
93 | GLuint end, GLsizei count, GLenum type,
|
---|
94 | const GLvoid *indices);
|
---|
95 |
|
---|
96 | extern void
|
---|
97 | _mesa_save_DrawRangeElements(GLenum mode,
|
---|
98 | GLuint start, GLuint end, GLsizei count,
|
---|
99 | GLenum type, const GLvoid *indices );
|
---|
100 |
|
---|
101 |
|
---|
102 | extern void gl_exec_array_elements( GLcontext *ctx,
|
---|
103 | struct immediate *IM,
|
---|
104 | GLuint start,
|
---|
105 | GLuint end );
|
---|
106 |
|
---|
107 | extern void gl_update_client_state( GLcontext *ctx );
|
---|
108 |
|
---|
109 | #endif
|
---|