Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mesa 3-D graphics library |
Brian Paul | dc0b71f | 2009-06-02 20:29:57 -0600 | [diff] [blame^] | 3 | * Version: 7.6 |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 4 | * |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 5 | * Copyright (C) 1999-2008 Brian Paul All Rights Reserved. |
Brian Paul | dc0b71f | 2009-06-02 20:29:57 -0600 | [diff] [blame^] | 6 | * Copyright (C) 2009 VMware, Inc. All Rights Reserved. |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 7 | * |
| 8 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 9 | * copy of this software and associated documentation files (the "Software"), |
| 10 | * to deal in the Software without restriction, including without limitation |
| 11 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 12 | * and/or sell copies of the Software, and to permit persons to whom the |
| 13 | * Software is furnished to do so, subject to the following conditions: |
| 14 | * |
| 15 | * The above copyright notice and this permission notice shall be included |
| 16 | * in all copies or substantial portions of the Software. |
| 17 | * |
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 19 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 21 | * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN |
| 22 | * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 23 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 24 | */ |
| 25 | |
| 26 | |
| 27 | |
| 28 | #ifndef BUFFEROBJ_H |
| 29 | #define BUFFEROBJ_H |
| 30 | |
| 31 | |
Brian Paul | 148a284 | 2003-09-17 03:40:11 +0000 | [diff] [blame] | 32 | #include "context.h" |
| 33 | |
| 34 | |
Brian Paul | c7b872a | 2003-09-09 13:44:40 +0000 | [diff] [blame] | 35 | /* |
| 36 | * Internal functions |
| 37 | */ |
| 38 | |
| 39 | extern void |
Brian Paul | 148a284 | 2003-09-17 03:40:11 +0000 | [diff] [blame] | 40 | _mesa_init_buffer_objects( GLcontext *ctx ); |
| 41 | |
Brian | 4b654d4 | 2007-08-23 08:53:43 +0100 | [diff] [blame] | 42 | extern void |
| 43 | _mesa_update_default_objects_buffer_objects(GLcontext *ctx); |
| 44 | |
Brian Paul | c7b872a | 2003-09-09 13:44:40 +0000 | [diff] [blame] | 45 | extern struct gl_buffer_object * |
| 46 | _mesa_new_buffer_object( GLcontext *ctx, GLuint name, GLenum target ); |
| 47 | |
| 48 | extern void |
Brian Paul | 148a284 | 2003-09-17 03:40:11 +0000 | [diff] [blame] | 49 | _mesa_delete_buffer_object( GLcontext *ctx, struct gl_buffer_object *bufObj ); |
| 50 | |
Brian Paul | 4d12a05 | 2006-08-23 23:10:14 +0000 | [diff] [blame] | 51 | extern struct gl_buffer_object * |
| 52 | _mesa_lookup_bufferobj(GLcontext *ctx, GLuint buffer); |
| 53 | |
Brian Paul | 148a284 | 2003-09-17 03:40:11 +0000 | [diff] [blame] | 54 | extern void |
Brian Paul | c7b872a | 2003-09-09 13:44:40 +0000 | [diff] [blame] | 55 | _mesa_initialize_buffer_object( struct gl_buffer_object *obj, |
| 56 | GLuint name, GLenum target ); |
| 57 | |
| 58 | extern void |
Brian Paul | 37c74af | 2008-09-04 14:58:02 -0600 | [diff] [blame] | 59 | _mesa_reference_buffer_object(GLcontext *ctx, |
| 60 | struct gl_buffer_object **ptr, |
| 61 | struct gl_buffer_object *bufObj); |
Brian Paul | c7b872a | 2003-09-09 13:44:40 +0000 | [diff] [blame] | 62 | |
| 63 | extern void |
| 64 | _mesa_buffer_data( GLcontext *ctx, GLenum target, GLsizeiptrARB size, |
| 65 | const GLvoid * data, GLenum usage, |
| 66 | struct gl_buffer_object * bufObj ); |
| 67 | |
| 68 | extern void |
| 69 | _mesa_buffer_subdata( GLcontext *ctx, GLenum target, GLintptrARB offset, |
| 70 | GLsizeiptrARB size, const GLvoid * data, |
| 71 | struct gl_buffer_object * bufObj ); |
| 72 | |
| 73 | extern void |
| 74 | _mesa_buffer_get_subdata( GLcontext *ctx, GLenum target, GLintptrARB offset, |
| 75 | GLsizeiptrARB size, GLvoid * data, |
| 76 | struct gl_buffer_object * bufObj ); |
| 77 | |
| 78 | extern void * |
| 79 | _mesa_buffer_map( GLcontext *ctx, GLenum target, GLenum access, |
| 80 | struct gl_buffer_object * bufObj ); |
| 81 | |
Brian Paul | 2daa413 | 2004-10-31 00:17:42 +0000 | [diff] [blame] | 82 | extern GLboolean |
| 83 | _mesa_buffer_unmap( GLcontext *ctx, GLenum target, |
| 84 | struct gl_buffer_object * bufObj ); |
Brian Paul | c7b872a | 2003-09-09 13:44:40 +0000 | [diff] [blame] | 85 | |
Brian Paul | dc0b71f | 2009-06-02 20:29:57 -0600 | [diff] [blame^] | 86 | extern void |
| 87 | _mesa_copy_buffer_subdata(GLcontext *ctx, |
| 88 | struct gl_buffer_object *src, |
| 89 | struct gl_buffer_object *dst, |
| 90 | GLintptr readOffset, GLintptr writeOffset, |
| 91 | GLsizeiptr size); |
| 92 | |
Brian Paul | 7a6b71e | 2004-03-13 18:21:40 +0000 | [diff] [blame] | 93 | extern GLboolean |
Brian Paul | 6090938 | 2004-11-10 15:46:52 +0000 | [diff] [blame] | 94 | _mesa_validate_pbo_access(GLuint dimensions, |
| 95 | const struct gl_pixelstore_attrib *pack, |
Brian Paul | 7a6b71e | 2004-03-13 18:21:40 +0000 | [diff] [blame] | 96 | GLsizei width, GLsizei height, GLsizei depth, |
| 97 | GLenum format, GLenum type, const GLvoid *ptr); |
| 98 | |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 99 | extern const GLubyte * |
Brian | d933be6 | 2008-03-21 14:19:28 -0600 | [diff] [blame] | 100 | _mesa_map_bitmap_pbo(GLcontext *ctx, |
| 101 | const struct gl_pixelstore_attrib *unpack, |
| 102 | const GLubyte *bitmap); |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 103 | |
| 104 | extern void |
| 105 | _mesa_unmap_bitmap_pbo(GLcontext *ctx, |
| 106 | const struct gl_pixelstore_attrib *unpack); |
| 107 | |
| 108 | extern const GLvoid * |
Brian | d933be6 | 2008-03-21 14:19:28 -0600 | [diff] [blame] | 109 | _mesa_map_drawpix_pbo(GLcontext *ctx, |
| 110 | const struct gl_pixelstore_attrib *unpack, |
| 111 | const GLvoid *pixels); |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 112 | |
| 113 | extern void |
Brian Paul | 1437b41 | 2008-04-25 14:15:42 -0600 | [diff] [blame] | 114 | _mesa_unmap_drawpix_pbo(GLcontext *ctx, |
| 115 | const struct gl_pixelstore_attrib *unpack); |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 116 | |
| 117 | extern void * |
Brian | d933be6 | 2008-03-21 14:19:28 -0600 | [diff] [blame] | 118 | _mesa_map_readpix_pbo(GLcontext *ctx, |
| 119 | const struct gl_pixelstore_attrib *pack, |
| 120 | GLvoid *dest); |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 121 | |
| 122 | extern void |
| 123 | _mesa_unmap_readpix_pbo(GLcontext *ctx, |
| 124 | const struct gl_pixelstore_attrib *pack); |
| 125 | |
| 126 | |
Brian Paul | c7b872a | 2003-09-09 13:44:40 +0000 | [diff] [blame] | 127 | |
| 128 | /* |
| 129 | * API functions |
| 130 | */ |
| 131 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 132 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 133 | _mesa_BindBufferARB(GLenum target, GLuint buffer); |
| 134 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 135 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 136 | _mesa_DeleteBuffersARB(GLsizei n, const GLuint * buffer); |
| 137 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 138 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 139 | _mesa_GenBuffersARB(GLsizei n, GLuint * buffer); |
| 140 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 141 | extern GLboolean GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 142 | _mesa_IsBufferARB(GLuint buffer); |
| 143 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 144 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 145 | _mesa_BufferDataARB(GLenum target, GLsizeiptrARB size, const GLvoid * data, GLenum usage); |
| 146 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 147 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 148 | _mesa_BufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid * data); |
| 149 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 150 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 151 | _mesa_GetBufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, void * data); |
| 152 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 153 | extern void * GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 154 | _mesa_MapBufferARB(GLenum target, GLenum access); |
| 155 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 156 | extern GLboolean GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 157 | _mesa_UnmapBufferARB(GLenum target); |
| 158 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 159 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 160 | _mesa_GetBufferParameterivARB(GLenum target, GLenum pname, GLint *params); |
| 161 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 162 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 163 | _mesa_GetBufferPointervARB(GLenum target, GLenum pname, GLvoid **params); |
| 164 | |
Brian Paul | dc0b71f | 2009-06-02 20:29:57 -0600 | [diff] [blame^] | 165 | extern void GLAPIENTRY |
| 166 | _mesa_CopyBufferSubData(GLenum readTarget, GLenum writeTarget, |
| 167 | GLintptr readOffset, GLintptr writeOffset, |
| 168 | GLsizeiptr size); |
| 169 | |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 170 | #endif |