7742e29a8b39c24fdf1618f0e6b81c127ba59419
[mesa.git] / src / mesa / main / bufferobj.c
1 /* $Id: bufferobj.c,v 1.1 2003/03/29 17:01:00 brianp Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 5.1
6 *
7 * Copyright (C) 1999-2003 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 /**
29 * \file bufferobj.c
30 * \brief Functions for the GL_ARB_vertex_buffer_object extension.
31 * \author Brian Paul
32 */
33
34
35 #include "glheader.h"
36 #include "imports.h"
37 #include "bufferobj.h"
38
39
40 void
41 _mesa_BindBufferARB(GLenum target, GLuint buffer)
42 {
43 }
44
45 void
46 _mesa_DeleteBuffersARB(GLsizei n, const GLuint * buffer)
47 {
48 }
49
50 void
51 _mesa_GenBuffersARB(GLsizei n, GLuint * buffer)
52 {
53 }
54
55 GLboolean
56 _mesa_IsBufferARB(GLuint buffer)
57 {
58 return GL_FALSE;
59 }
60
61 void
62 _mesa_BufferDataARB(GLenum target, GLsizeiptrARB size,
63 const GLvoid * data, GLenum usage)
64 {
65 }
66
67 void
68 _mesa_BufferSubDataARB(GLenum target, GLintptrARB offset,
69 GLsizeiptrARB size, const GLvoid * data)
70 {
71 }
72
73 void
74 _mesa_GetBufferSubDataARB(GLenum target, GLintptrARB offset,
75 GLsizeiptrARB size, void * data)
76 {
77 }
78
79 void
80 _mesa_MapBufferARB(GLenum target, GLenum access)
81 {
82 }
83
84 GLboolean
85 _mesa_UnmapBufferARB(GLenum target)
86 {
87 return GL_FALSE;
88 }
89
90 void
91 _mesa_GetBufferParameterivARB(GLenum target, GLenum pname, GLint *params)
92 {
93 }
94
95 void
96 _mesa_GetBufferPointervARB(GLenum target, GLenum pname, GLvoid **params)
97 {
98 }