diff options
author | Timothy Arceri <[email protected]> | 2017-06-28 13:57:10 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-06-29 08:54:11 +1000 |
commit | d731b189335545abeb71b1cfc8b0562370d68d87 (patch) | |
tree | 63be940f73973b4275b01cc7537c29347f10b421 /src/mesa/main/varray.h | |
parent | 8e77fceedbd2b030906bacc7c524a77997ae11a1 (diff) |
mesa: add KHR_no_error support for glEnableVertexA*A*()
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r-- | src/mesa/main/varray.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index 1dbdbdb5059..be8abf96aeb 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -223,10 +223,17 @@ _mesa_VertexAttribLPointer(GLuint index, GLint size, GLenum type, extern void GLAPIENTRY _mesa_EnableVertexAttribArray(GLuint index); +extern void GLAPIENTRY +_mesa_EnableVertexAttribArray_no_error(GLuint index); + extern void GLAPIENTRY _mesa_EnableVertexArrayAttrib(GLuint vaobj, GLuint index); +extern void GLAPIENTRY +_mesa_EnableVertexArrayAttrib_no_error(GLuint vaobj, GLuint index); + + extern void GLAPIENTRY _mesa_DisableVertexAttribArray(GLuint index); |