diff options
author | Timothy Arceri <[email protected]> | 2018-05-18 15:20:35 +1000 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-06-28 15:41:12 -0400 |
commit | 83ed9485b75c92e269c000a5d184393fbe4cbd77 (patch) | |
tree | 01ab59d64aa09b461782b29a65c20e1c7678b803 /src/mesa/main/bufferobj.h | |
parent | 0972b0b059d78fb30d982939d0849542ecdf6f98 (diff) |
mesa: add support for glNamedBuffer*DataEXT()
Reviewed-by: Marek Olšák <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/main/bufferobj.h')
-rw-r--r-- | src/mesa/main/bufferobj.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/bufferobj.h b/src/mesa/main/bufferobj.h index 74538648540..74124649bb6 100644 --- a/src/mesa/main/bufferobj.h +++ b/src/mesa/main/bufferobj.h @@ -222,6 +222,9 @@ _mesa_NamedBufferData_no_error(GLuint buffer, GLsizeiptr size, void GLAPIENTRY _mesa_NamedBufferData(GLuint buffer, GLsizeiptr size, const GLvoid *data, GLenum usage); +void GLAPIENTRY +_mesa_NamedBufferDataEXT(GLuint buffer, GLsizeiptr size, + const GLvoid *data, GLenum usage); void GLAPIENTRY _mesa_BufferSubData_no_error(GLenum target, GLintptr offset, @@ -236,6 +239,9 @@ _mesa_NamedBufferSubData_no_error(GLuint buffer, GLintptr offset, void GLAPIENTRY _mesa_NamedBufferSubData(GLuint buffer, GLintptr offset, GLsizeiptr size, const GLvoid *data); +void GLAPIENTRY +_mesa_NamedBufferSubDataEXT(GLuint buffer, GLintptr offset, + GLsizeiptr size, const GLvoid *data); void GLAPIENTRY _mesa_GetBufferSubData(GLenum target, GLintptr offset, |