[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] | 35 | extern void
|
---|
| 36 | _mesa_VertexPointer(GLint size, GLenum type, GLsizei stride,
|
---|
| 37 | const GLvoid *ptr);
|
---|
[2938] | 38 |
|
---|
| 39 |
|
---|
[3597] | 40 | extern void
|
---|
| 41 | _mesa_NormalPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
|
---|
[2938] | 42 |
|
---|
| 43 |
|
---|
[3597] | 44 | extern void
|
---|
| 45 | _mesa_ColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
|
---|
[2938] | 46 |
|
---|
| 47 |
|
---|
[3597] | 48 | extern void
|
---|
| 49 | _mesa_IndexPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
|
---|
[2938] | 50 |
|
---|
| 51 |
|
---|
[3597] | 52 | extern void
|
---|
| 53 | _mesa_TexCoordPointer(GLint size, GLenum type, GLsizei stride,
|
---|
| 54 | const GLvoid *ptr);
|
---|
[2938] | 55 |
|
---|
| 56 |
|
---|
[3597] | 57 | extern void
|
---|
| 58 | _mesa_EdgeFlagPointer(GLsizei stride, const GLvoid *ptr);
|
---|
[2938] | 59 |
|
---|
| 60 |
|
---|
[3597] | 61 | extern void
|
---|
| 62 | _mesa_ArrayElement( GLint );
|
---|
[2938] | 63 |
|
---|
| 64 |
|
---|
[3597] | 65 | extern void
|
---|
| 66 | _mesa_DrawArrays(GLenum mode, GLint first, GLsizei count);
|
---|
[2938] | 67 |
|
---|
| 68 |
|
---|
[3597] | 69 | extern void
|
---|
| 70 | _mesa_save_DrawArrays(GLenum mode, GLint first, GLsizei count);
|
---|
[2938] | 71 |
|
---|
| 72 |
|
---|
[3597] | 73 | extern void
|
---|
| 74 | _mesa_DrawElements(GLenum mode, GLsizei count, GLenum type,
|
---|
| 75 | const GLvoid *indices);
|
---|
[2938] | 76 |
|
---|
| 77 |
|
---|
[3597] | 78 | extern void
|
---|
| 79 | _mesa_save_DrawElements(GLenum mode, GLsizei count,
|
---|
| 80 | GLenum type, const GLvoid *indices);
|
---|
[2938] | 81 |
|
---|
| 82 |
|
---|
[3597] | 83 | extern void
|
---|
| 84 | _mesa_InterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer);
|
---|
[2938] | 85 |
|
---|
[3597] | 86 | extern void
|
---|
| 87 | _mesa_save_InterleavedArrays(GLenum format, GLsizei stride,
|
---|
| 88 | const GLvoid *pointer);
|
---|
[2938] | 89 |
|
---|
| 90 |
|
---|
[3597] | 91 | extern void
|
---|
| 92 | _mesa_DrawRangeElements(GLenum mode, GLuint start,
|
---|
| 93 | GLuint end, GLsizei count, GLenum type,
|
---|
| 94 | const GLvoid *indices);
|
---|
[2938] | 95 |
|
---|
[3597] | 96 | extern 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] | 102 | extern void gl_exec_array_elements( GLcontext *ctx,
|
---|
[3597] | 103 | struct immediate *IM,
|
---|
| 104 | GLuint start,
|
---|
| 105 | GLuint end );
|
---|
[2938] | 106 |
|
---|
| 107 | extern void gl_update_client_state( GLcontext *ctx );
|
---|
| 108 |
|
---|
| 109 | #endif
|
---|