From: José Fonseca Date: Wed, 29 May 2013 09:08:51 +0000 (+0100) Subject: glretrace: Make glTransformFeedbackAttribsNV replayable. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=ab6b679a6d144f36b823718fe7b6057dbffde4f9;hp=225d1245ab82085fd4014fc8e1b37891e4397fa6;p=apitrace glretrace: Make glTransformFeedbackAttribsNV replayable. --- diff --git a/specs/glapi.py b/specs/glapi.py index 94384c4..a237bdb 100644 --- a/specs/glapi.py +++ b/specs/glapi.py @@ -2447,7 +2447,7 @@ glapi.addFunctions([ # GL_NV_transform_feedback GlFunction(Void, "glBeginTransformFeedbackNV", [(GLenum_mode, "primitiveMode")]), GlFunction(Void, "glEndTransformFeedbackNV", []), - GlFunction(Void, "glTransformFeedbackAttribsNV", [(GLuint, "count"), (OpaqueArray(Const(GLint), "_glTransformFeedbackAttribsNV_size(count)"), "attribs"), (GLenum, "bufferMode")]), + GlFunction(Void, "glTransformFeedbackAttribsNV", [(GLuint, "count"), (Array(Const(GLint), "count*3"), "attribs"), (GLenum, "bufferMode")]), GlFunction(Void, "glBindBufferRangeNV", [(GLenum, "target"), (GLuint, "index"), (GLbuffer, "buffer"), (GLintptr, "offset"), (GLsizeiptr, "size")]), GlFunction(Void, "glBindBufferOffsetNV", [(GLenum, "target"), (GLuint, "index"), (GLbuffer, "buffer"), (GLintptr, "offset")]), GlFunction(Void, "glBindBufferBaseNV", [(GLenum, "target"), (GLuint, "index"), (GLbuffer, "buffer")]),