From: Christoph Bumiller Date: Thu, 25 Aug 2011 10:52:35 +0000 (+0200) Subject: d3d1x: save to correct slot in xs_set_constant_buffers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=55592d9da1bb694c7275984cf9a3ecaafcccf46a;p=mesa.git d3d1x: save to correct slot in xs_set_constant_buffers --- diff --git a/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h b/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h index 8e48d1883b1..0a31cf10a34 100644 --- a/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h +++ b/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h @@ -352,9 +352,9 @@ struct GalliumD3D10Device : public GalliumD3D10ScreenImpl { for(unsigned i = 0; i < count; ++i) { - if(constbufs[i] != constant_buffers[s][i].p) + if(constbufs[i] != constant_buffers[s][start + i].p) { - constant_buffers[s][i] = constbufs[i]; + constant_buffers[s][start + i] = constbufs[i]; if(s < caps.stages && start + i < caps.constant_buffers[s]) pipe->set_constant_buffer(pipe, s, start + i, constbufs[i] ? constbufs[i]->resource : NULL); }