source: trunk/src/opengl/mesa/varray.h

Last change on this file was 3597, checked in by jeroen, 25 years ago

* empty log message *

File size: 3.1 KB
RevLine 
[3597]1/* $Id: varray.h,v 1.2 2000-05-23 20:34:59 jeroen Exp $ */
[2938]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
[3597]35extern void
36_mesa_VertexPointer(GLint size, GLenum type, GLsizei stride,
37 const GLvoid *ptr);
[2938]38
39
[3597]40extern void
41_mesa_NormalPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
[2938]42
43
[3597]44extern void
45_mesa_ColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
[2938]46
47
[3597]48extern void
49_mesa_IndexPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
[2938]50
51
[3597]52extern void
53_mesa_TexCoordPointer(GLint size, GLenum type, GLsizei stride,
54 const GLvoid *ptr);
[2938]55
56
[3597]57extern void
58_mesa_EdgeFlagPointer(GLsizei stride, const GLvoid *ptr);
[2938]59
60
[3597]61extern void
62_mesa_ArrayElement( GLint );
[2938]63
64
[3597]65extern void
66_mesa_DrawArrays(GLenum mode, GLint first, GLsizei count);
[2938]67
68
[3597]69extern void
70_mesa_save_DrawArrays(GLenum mode, GLint first, GLsizei count);
[2938]71
72
[3597]73extern void
74_mesa_DrawElements(GLenum mode, GLsizei count, GLenum type,
75 const GLvoid *indices);
[2938]76
77
[3597]78extern void
79_mesa_save_DrawElements(GLenum mode, GLsizei count,
80 GLenum type, const GLvoid *indices);
[2938]81
82
[3597]83extern void
84_mesa_InterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer);
[2938]85
[3597]86extern void
87_mesa_save_InterleavedArrays(GLenum format, GLsizei stride,
88 const GLvoid *pointer);
[2938]89
90
[3597]91extern void
92_mesa_DrawRangeElements(GLenum mode, GLuint start,
93 GLuint end, GLsizei count, GLenum type,
94 const GLvoid *indices);
[2938]95
[3597]96extern void
97_mesa_save_DrawRangeElements(GLenum mode,
98 GLuint start, GLuint end, GLsizei count,
99 GLenum type, const GLvoid *indices );
[2938]100
[3597]101
[2938]102extern void gl_exec_array_elements( GLcontext *ctx,
[3597]103 struct immediate *IM,
104 GLuint start,
105 GLuint end );
[2938]106
107extern void gl_update_client_state( GLcontext *ctx );
108
109#endif
Note: See TracBrowser for help on using the repository browser.