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 | |
Brian Paul | 67153a4 | 2009-08-07 09:40:02 -0600 | [diff] [blame] | 39 | |
| 40 | /** Is the given buffer object currently mapped? */ |
| 41 | static INLINE GLboolean |
Brian Paul | f95b82b | 2009-08-12 15:43:50 -0600 | [diff] [blame] | 42 | _mesa_bufferobj_mapped(const struct gl_buffer_object *obj) |
Brian Paul | 67153a4 | 2009-08-07 09:40:02 -0600 | [diff] [blame] | 43 | { |
| 44 | return obj->Pointer != NULL; |
| 45 | } |
| 46 | |
Brian Paul | abbf835 | 2009-08-12 13:44:43 -0600 | [diff] [blame] | 47 | /** |
| 48 | * Is the given buffer object a user-created buffer object? |
| 49 | * Mesa uses default buffer objects in several places. Default buffers |
| 50 | * always have Name==0. User created buffers have Name!=0. |
| 51 | */ |
| 52 | static INLINE GLboolean |
Brian Paul | f95b82b | 2009-08-12 15:43:50 -0600 | [diff] [blame] | 53 | _mesa_is_bufferobj(const struct gl_buffer_object *obj) |
Brian Paul | abbf835 | 2009-08-12 13:44:43 -0600 | [diff] [blame] | 54 | { |
| 55 | return obj->Name != 0; |
| 56 | } |
| 57 | |
| 58 | |
Brian Paul | c7b872a | 2003-09-09 13:44:40 +0000 | [diff] [blame] | 59 | extern void |
Brian Paul | 148a284 | 2003-09-17 03:40:11 +0000 | [diff] [blame] | 60 | _mesa_init_buffer_objects( GLcontext *ctx ); |
| 61 | |
Brian | 4b654d4 | 2007-08-23 08:53:43 +0100 | [diff] [blame] | 62 | extern void |
| 63 | _mesa_update_default_objects_buffer_objects(GLcontext *ctx); |
| 64 | |
Brian Paul | 148a284 | 2003-09-17 03:40:11 +0000 | [diff] [blame] | 65 | |
Brian Paul | 4d12a05 | 2006-08-23 23:10:14 +0000 | [diff] [blame] | 66 | extern struct gl_buffer_object * |
| 67 | _mesa_lookup_bufferobj(GLcontext *ctx, GLuint buffer); |
| 68 | |
Brian Paul | 148a284 | 2003-09-17 03:40:11 +0000 | [diff] [blame] | 69 | extern void |
Brian Paul | c7b872a | 2003-09-09 13:44:40 +0000 | [diff] [blame] | 70 | _mesa_initialize_buffer_object( struct gl_buffer_object *obj, |
| 71 | GLuint name, GLenum target ); |
| 72 | |
| 73 | extern void |
Brian Paul | 37c74af | 2008-09-04 14:58:02 -0600 | [diff] [blame] | 74 | _mesa_reference_buffer_object(GLcontext *ctx, |
| 75 | struct gl_buffer_object **ptr, |
| 76 | struct gl_buffer_object *bufObj); |
Brian Paul | c7b872a | 2003-09-09 13:44:40 +0000 | [diff] [blame] | 77 | |
Brian Paul | 7a6b71e | 2004-03-13 18:21:40 +0000 | [diff] [blame] | 78 | extern GLboolean |
Brian Paul | 6090938 | 2004-11-10 15:46:52 +0000 | [diff] [blame] | 79 | _mesa_validate_pbo_access(GLuint dimensions, |
| 80 | const struct gl_pixelstore_attrib *pack, |
Brian Paul | 7a6b71e | 2004-03-13 18:21:40 +0000 | [diff] [blame] | 81 | GLsizei width, GLsizei height, GLsizei depth, |
| 82 | GLenum format, GLenum type, const GLvoid *ptr); |
| 83 | |
Brian Paul | 1b448c7 | 2009-09-03 11:29:18 -0600 | [diff] [blame] | 84 | extern const GLvoid * |
| 85 | _mesa_map_pbo_source(GLcontext *ctx, |
Brian | d933be6 | 2008-03-21 14:19:28 -0600 | [diff] [blame] | 86 | const struct gl_pixelstore_attrib *unpack, |
Brian Paul | 1b448c7 | 2009-09-03 11:29:18 -0600 | [diff] [blame] | 87 | const GLvoid *src); |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 88 | |
Brian Paul | dc947c8 | 2009-09-03 11:22:27 -0600 | [diff] [blame] | 89 | extern const GLvoid * |
| 90 | _mesa_map_validate_pbo_source(GLcontext *ctx, |
| 91 | GLuint dimensions, |
| 92 | const struct gl_pixelstore_attrib *unpack, |
| 93 | GLsizei width, GLsizei height, GLsizei depth, |
| 94 | GLenum format, GLenum type, const GLvoid *ptr, |
| 95 | const char *where); |
| 96 | |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 97 | extern void |
Brian Paul | 1b448c7 | 2009-09-03 11:29:18 -0600 | [diff] [blame] | 98 | _mesa_unmap_pbo_source(GLcontext *ctx, |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 99 | const struct gl_pixelstore_attrib *unpack); |
| 100 | |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 101 | extern void * |
Brian Paul | 1b448c7 | 2009-09-03 11:29:18 -0600 | [diff] [blame] | 102 | _mesa_map_pbo_dest(GLcontext *ctx, |
| 103 | const struct gl_pixelstore_attrib *pack, |
| 104 | GLvoid *dest); |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 105 | |
Brian Paul | dc947c8 | 2009-09-03 11:22:27 -0600 | [diff] [blame] | 106 | extern GLvoid * |
| 107 | _mesa_map_validate_pbo_dest(GLcontext *ctx, |
| 108 | GLuint dimensions, |
| 109 | const struct gl_pixelstore_attrib *unpack, |
| 110 | GLsizei width, GLsizei height, GLsizei depth, |
| 111 | GLenum format, GLenum type, GLvoid *ptr, |
| 112 | const char *where); |
| 113 | |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 114 | extern void |
Brian Paul | 1b448c7 | 2009-09-03 11:29:18 -0600 | [diff] [blame] | 115 | _mesa_unmap_pbo_dest(GLcontext *ctx, |
| 116 | const struct gl_pixelstore_attrib *pack); |
Brian | a429a25 | 2008-03-21 13:41:00 -0600 | [diff] [blame] | 117 | |
| 118 | |
Brian Paul | 331eb58f | 2009-06-19 10:00:03 -0600 | [diff] [blame] | 119 | extern void |
| 120 | _mesa_init_buffer_object_functions(struct dd_function_table *driver); |
| 121 | |
Brian Paul | c7b872a | 2003-09-09 13:44:40 +0000 | [diff] [blame] | 122 | |
| 123 | /* |
| 124 | * API functions |
| 125 | */ |
| 126 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 127 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 128 | _mesa_BindBufferARB(GLenum target, GLuint buffer); |
| 129 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 130 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 131 | _mesa_DeleteBuffersARB(GLsizei n, const GLuint * buffer); |
| 132 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 133 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 134 | _mesa_GenBuffersARB(GLsizei n, GLuint * buffer); |
| 135 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 136 | extern GLboolean GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 137 | _mesa_IsBufferARB(GLuint buffer); |
| 138 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 139 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 140 | _mesa_BufferDataARB(GLenum target, GLsizeiptrARB size, const GLvoid * data, GLenum usage); |
| 141 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 142 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 143 | _mesa_BufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid * data); |
| 144 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 145 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 146 | _mesa_GetBufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, void * data); |
| 147 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 148 | extern void * GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 149 | _mesa_MapBufferARB(GLenum target, GLenum access); |
| 150 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 151 | extern GLboolean GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 152 | _mesa_UnmapBufferARB(GLenum target); |
| 153 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 154 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 155 | _mesa_GetBufferParameterivARB(GLenum target, GLenum pname, GLint *params); |
| 156 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 157 | extern void GLAPIENTRY |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 158 | _mesa_GetBufferPointervARB(GLenum target, GLenum pname, GLvoid **params); |
| 159 | |
Brian Paul | dc0b71f | 2009-06-02 20:29:57 -0600 | [diff] [blame] | 160 | extern void GLAPIENTRY |
| 161 | _mesa_CopyBufferSubData(GLenum readTarget, GLenum writeTarget, |
| 162 | GLintptr readOffset, GLintptr writeOffset, |
| 163 | GLsizeiptr size); |
| 164 | |
Brian Paul | e75b283 | 2009-06-08 17:02:36 -0600 | [diff] [blame] | 165 | extern void * GLAPIENTRY |
| 166 | _mesa_MapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, |
| 167 | GLbitfield access); |
| 168 | |
| 169 | extern void GLAPIENTRY |
| 170 | _mesa_FlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length); |
| 171 | |
Brian Paul | 6061df0 | 2003-03-29 17:01:00 +0000 | [diff] [blame] | 172 | #endif |