mesa: add KHR_no_error support for glEnableVertexA*A*()
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
@@ -589,7 +589,7 @@
|
||||
<param name="index" type="GLuint" />
|
||||
</function>
|
||||
|
||||
<function name="EnableVertexArrayAttrib">
|
||||
<function name="EnableVertexArrayAttrib" no_error="true">
|
||||
<param name="vaobj" type="GLuint" />
|
||||
<param name="index" type="GLuint" />
|
||||
</function>
|
||||
|
||||
@@ -5346,7 +5346,7 @@
|
||||
<glx handcode="true"/>
|
||||
</function>
|
||||
|
||||
<function name="EnableVertexAttribArray" es2="2.0">
|
||||
<function name="EnableVertexAttribArray" es2="2.0" no_error="true">
|
||||
<param name="index" type="GLuint"/>
|
||||
<glx ignore="true"/>
|
||||
<glx handcode="true"/>
|
||||
|
||||
@@ -1099,6 +1099,15 @@ _mesa_EnableVertexAttribArray(GLuint index)
|
||||
}
|
||||
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_EnableVertexAttribArray_no_error(GLuint index)
|
||||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
_mesa_enable_vertex_array_attrib(ctx, ctx->Array.VAO,
|
||||
VERT_ATTRIB_GENERIC(index));
|
||||
}
|
||||
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_EnableVertexArrayAttrib(GLuint vaobj, GLuint index)
|
||||
{
|
||||
@@ -1120,6 +1129,15 @@ _mesa_EnableVertexArrayAttrib(GLuint vaobj, GLuint index)
|
||||
}
|
||||
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_EnableVertexArrayAttrib_no_error(GLuint vaobj, GLuint index)
|
||||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
struct gl_vertex_array_object *vao = _mesa_lookup_vao(ctx, vaobj);
|
||||
_mesa_enable_vertex_array_attrib(ctx, vao, VERT_ATTRIB_GENERIC(index));
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
disable_vertex_array_attrib(struct gl_context *ctx,
|
||||
struct gl_vertex_array_object *vao,
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user