ReactOS 0.4.15-dev-7953-g1f49173
varray.h
Go to the documentation of this file.
1/* $Id: varray.h,v 1.1 1996/09/13 01:38:16 brianp Exp $ */
2
3/*
4 * Mesa 3-D graphics library
5 * Version: 2.0
6 * Copyright (C) 1995-1996 Brian Paul
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
17 *
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the Free
20 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23
24/*
25 * $Log: varray.h,v $
26 * Revision 1.1 1996/09/13 01:38:16 brianp
27 * Initial revision
28 *
29 */
30
31
32#ifndef VARRAY_H
33#define VARRAY_H
34
35
36#include "types.h"
37
38
39extern void gl_VertexPointer( GLcontext *ctx,
41 const GLvoid *ptr );
42
43
44extern void gl_NormalPointer( GLcontext *ctx,
46
47
48extern void gl_ColorPointer( GLcontext *ctx,
50 const GLvoid *ptr );
51
52
53extern void gl_IndexPointer( GLcontext *ctx,
55 const GLvoid *ptr );
56
57
58extern void gl_TexCoordPointer( GLcontext *ctx,
60 const GLvoid *ptr );
61
62
63extern void gl_EdgeFlagPointer( GLcontext *ctx,
64 GLsizei stride, const GLboolean *ptr );
65
66
68
69
70extern void gl_ArrayElement( GLcontext *ctx, GLint i );
71
73
74
75extern void gl_DrawArrays( GLcontext *ctx,
77
78extern void gl_save_DrawArrays( GLcontext *ctx,
80
81
82extern void gl_DrawElements( GLcontext *ctx,
84 GLenum type, const GLvoid *indices );
85
88 GLenum type, const GLvoid *indices );
89
90
93 const GLvoid *pointer );
94
97 const GLvoid *pointer );
98
99#endif
100
101
102
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545
unsigned int GLenum
Definition: gl.h:150
GLuint GLuint GLsizei count
Definition: gl.h:1545
GLint GLint GLsizei GLsizei GLsizei GLint GLenum format
Definition: gl.h:1546
int GLsizei
Definition: gl.h:160
int GLint
Definition: gl.h:156
GLuint GLuint GLsizei GLenum const GLvoid * indices
Definition: gl.h:1545
unsigned char GLboolean
Definition: gl.h:151
GLsizeiptr size
Definition: glext.h:5919
GLsizei stride
Definition: glext.h:5848
GLsizei const GLvoid * pointer
Definition: glext.h:5848
GLenum pname
Definition: glext.h:5645
GLenum mode
Definition: glext.h:6217
GLenum const GLfloat * params
Definition: glext.h:5645
const GLint * first
Definition: glext.h:5794
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
void gl_DrawArrays(GLcontext *ctx, GLenum mode, GLint first, GLsizei count)
Definition: varray.c:788
void gl_InterleavedArrays(GLcontext *ctx, GLenum format, GLsizei stride, const GLvoid *pointer)
Definition: varray.c:1162
void gl_TexCoordPointer(GLcontext *ctx, GLint size, GLenum type, GLsizei stride, const GLvoid *ptr)
Definition: varray.c:263
void gl_save_DrawElements(GLcontext *ctx, GLenum mode, GLsizei count, GLenum type, const GLvoid *indices)
Definition: varray.c:1115
void gl_save_DrawArrays(GLcontext *ctx, GLenum mode, GLint first, GLsizei count)
Definition: varray.c:993
void gl_ArrayElement(GLcontext *ctx, GLint i)
Definition: varray.c:317
void gl_IndexPointer(GLcontext *ctx, GLenum type, GLsizei stride, const GLvoid *ptr)
Definition: varray.c:232
void gl_NormalPointer(GLcontext *ctx, GLenum type, GLsizei stride, const GLvoid *ptr)
Definition: varray.c:149
void gl_DrawElements(GLcontext *ctx, GLenum mode, GLsizei count, GLenum type, const GLvoid *indices)
Definition: varray.c:1039
void gl_GetPointerv(GLcontext *ctx, GLenum pname, GLvoid **params)
Definition: get.c:3170
void gl_save_ArrayElement(GLcontext *ctx, GLint i)
Definition: varray.c:592
void gl_save_InterleavedArrays(GLcontext *ctx, GLenum format, GLsizei stride, const GLvoid *pointer)
Definition: varray.c:1332
void gl_VertexPointer(GLcontext *ctx, GLint size, GLenum type, GLsizei stride, const GLvoid *ptr)
Definition: varray.c:111
void gl_EdgeFlagPointer(GLcontext *ctx, GLsizei stride, const GLboolean *ptr)
Definition: varray.c:300
void gl_ColorPointer(GLcontext *ctx, GLint size, GLenum type, GLsizei stride, const GLvoid *ptr)
Definition: varray.c:183
static PVOID ptr
Definition: dispmode.c:27