summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/bufferobj.h
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-05-12 21:36:25 +1000
committerTimothy Arceri <[email protected]>2017-05-17 10:12:03 +1000
commitb3888b7a681d5ef598ef55f3c3822082daa46fda (patch)
tree7323ca310a64f5e8b7b9b1d9813d4666d7cf9c13 /src/mesa/main/bufferobj.h
parent7ec12293bee9cff0d161bfde7fb9c9e8a0aafd2b (diff)
mesa: add KHR_no_error support for glBufferSubData()
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/main/bufferobj.h')
-rw-r--r--src/mesa/main/bufferobj.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/bufferobj.h b/src/mesa/main/bufferobj.h
index b3cfcc0a4a3..f652ec30d05 100644
--- a/src/mesa/main/bufferobj.h
+++ b/src/mesa/main/bufferobj.h
@@ -193,6 +193,9 @@ _mesa_NamedBufferData(GLuint buffer, GLsizeiptr size,
const GLvoid *data, GLenum usage);
void GLAPIENTRY
+_mesa_BufferSubData_no_error(GLenum target, GLintptr offset,
+ GLsizeiptr size, const GLvoid *data);
+void GLAPIENTRY
_mesa_BufferSubData(GLenum target, GLintptr offset,
GLsizeiptr size, const GLvoid *data);