diff options
author | Brian Paul <brianp@vmware.com> | 2010-04-01 22:15:16 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-04-01 22:17:14 -0600 |
commit | 3100f31b747a3294e1e7043ed9a61d8b90bf423a (patch) | |
tree | 01e288268e3202b02ce68fe480e4119cb1c3073a /src | |
parent | 3b49437372218e12f4270b750199f8825f9b0f45 (diff) |
mesa: minor fixes in _mesa_GetTransformFeedbackVarying()
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/transformfeedback.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/mesa/main/transformfeedback.c b/src/mesa/main/transformfeedback.c index d988fc6b9a..74519ba38a 100644 --- a/src/mesa/main/transformfeedback.c +++ b/src/mesa/main/transformfeedback.c @@ -418,9 +418,18 @@ _mesa_GetTransformFeedbackVarying(GLuint program, GLuint index, /* return the datatype and value's size (in datatype units) */ if (type) - *type = param->Type; + *type = param->DataType; if (size) *size = param->Size; } + else { + name[0] = 0; + if (length) + *length = 0; + if (type) + *type = 0; + if (size) + *size = 0; + } } |