mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
fix GL_CURRENT_VERTEX_ATTRIB_ARB queries
This commit is contained in:
parent
9a2121cfb6
commit
66a83c9e17
2 changed files with 4 additions and 0 deletions
|
|
@ -142,6 +142,7 @@ _mesa_GetVertexAttribfvARB(GLuint index, GLenum pname, GLfloat *params)
|
|||
params[0] = ctx->Array.VertexAttrib[index].Normalized;
|
||||
break;
|
||||
case GL_CURRENT_VERTEX_ATTRIB_ARB:
|
||||
FLUSH_CURRENT(ctx, 0);
|
||||
COPY_4V(params, ctx->Current.Attrib[index]);
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
|
|
@ -697,6 +697,7 @@ _mesa_GetVertexAttribdvNV(GLuint index, GLenum pname, GLdouble *params)
|
|||
params[0] = ctx->Array.VertexAttrib[index].Type;
|
||||
break;
|
||||
case GL_CURRENT_ATTRIB_NV:
|
||||
FLUSH_CURRENT(ctx, 0);
|
||||
COPY_4V(params, ctx->Current.Attrib[index]);
|
||||
break;
|
||||
default:
|
||||
|
|
@ -732,6 +733,7 @@ _mesa_GetVertexAttribfvNV(GLuint index, GLenum pname, GLfloat *params)
|
|||
params[0] = (GLfloat) ctx->Array.VertexAttrib[index].Type;
|
||||
break;
|
||||
case GL_CURRENT_ATTRIB_NV:
|
||||
FLUSH_CURRENT(ctx, 0);
|
||||
COPY_4V(params, ctx->Current.Attrib[index]);
|
||||
break;
|
||||
default:
|
||||
|
|
@ -767,6 +769,7 @@ _mesa_GetVertexAttribivNV(GLuint index, GLenum pname, GLint *params)
|
|||
params[0] = ctx->Array.VertexAttrib[index].Type;
|
||||
break;
|
||||
case GL_CURRENT_ATTRIB_NV:
|
||||
FLUSH_CURRENT(ctx, 0);
|
||||
COPY_4V_CAST(params, ctx->Current.Attrib[index], GLint);
|
||||
break;
|
||||
case GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue