diff options
author | Dave Airlie <[email protected]> | 2013-04-11 15:20:19 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2013-04-11 15:20:19 +1000 |
commit | cb12bf7606116e473bf19aee84582b4cee7f895d (patch) | |
tree | 8674a20aded48eb449e4797d14563d6a26415e63 /src/mesa/state_tracker/st_atom_constbuf.c | |
parent | 3998f8c6b5da1a223926249755e54d8f701f81ab (diff) |
st/mesa: fix UBO offsets.
Reported and tested by degasus on #radeon.
Note: This is a candidate for the 9.1 branch
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_atom_constbuf.c')
-rw-r--r-- | src/mesa/state_tracker/st_atom_constbuf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_atom_constbuf.c b/src/mesa/state_tracker/st_atom_constbuf.c index 56ba96fe362..ed69166f6b5 100644 --- a/src/mesa/state_tracker/st_atom_constbuf.c +++ b/src/mesa/state_tracker/st_atom_constbuf.c @@ -197,6 +197,7 @@ static void st_bind_ubos(struct st_context *st, pipe_resource_reference(&cb.buffer, st_obj->buffer); cb.buffer_size = st_obj->buffer->width0 - binding->Offset; + cb.buffer_offset = binding->Offset; cso_set_constant_buffer(st->cso_context, shader_type, 1 + i, &cb); pipe_resource_reference(&cb.buffer, NULL); |