diff options
author | Dave Airlie <airlied@redhat.com> | 2016-05-30 06:56:52 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2016-05-30 21:18:54 +1000 |
commit | bac39dddcf28d9d2df2f60c8dbb384c54366ed73 (patch) | |
tree | f7436d11dfe9b0e0e708326cd1d8b3361c803ef9 | |
parent | e7bd5b4b77ec521c3e00ffeb276904d2da1e7078 (diff) |
mesa/xfb: report calculated size for XFB buffer objects.
This fixes:
GL45-CTS.direct_state_access.xfb_buffers
This test looks correct to me, we should work out the
size value and report it rather than using only the size
from the Range interface.
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r-- | src/mesa/main/transformfeedback.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/transformfeedback.c b/src/mesa/main/transformfeedback.c index 9c06bc8400..7c0ff6fc89 100644 --- a/src/mesa/main/transformfeedback.c +++ b/src/mesa/main/transformfeedback.c @@ -1291,12 +1291,13 @@ _mesa_GetTransformFeedbacki64_v(GLuint xfb, GLenum pname, GLuint index, return; } + compute_transform_feedback_buffer_sizes(obj); switch(pname) { case GL_TRANSFORM_FEEDBACK_BUFFER_START: *param = obj->Offset[index]; break; case GL_TRANSFORM_FEEDBACK_BUFFER_SIZE: - *param = obj->RequestedSize[index]; + *param = obj->Size[index]; break; default: _mesa_error(ctx, GL_INVALID_ENUM, |