diff options
author | Jakob Bornecrantz <[email protected]> | 2010-05-12 15:33:40 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-05-12 20:15:23 +0100 |
commit | 73684216ba49d069cd5b4ee5168c1e21538e237f (patch) | |
tree | 377c8dab154079a59173771dfd34b734090ea911 /src/gallium/drivers/rbug/rbug_context.h | |
parent | 21b668e11e3e0e84d476fea9b8d3198a610d71c8 (diff) |
rbug: Fix sampler views and surfaces in context info
Diffstat (limited to 'src/gallium/drivers/rbug/rbug_context.h')
-rw-r--r-- | src/gallium/drivers/rbug/rbug_context.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gallium/drivers/rbug/rbug_context.h b/src/gallium/drivers/rbug/rbug_context.h index ccba3c19254..0c99d60f2db 100644 --- a/src/gallium/drivers/rbug/rbug_context.h +++ b/src/gallium/drivers/rbug/rbug_context.h @@ -50,11 +50,13 @@ struct rbug_context { struct rbug_shader *vs; struct rbug_shader *gs; - struct rbug_sampler_view *sampler_views[PIPE_MAX_SAMPLERS]; - unsigned num_sampler_views; + struct rbug_sampler_view *fs_views[PIPE_MAX_SAMPLERS]; + struct rbug_resource *fs_texs[PIPE_MAX_SAMPLERS]; + unsigned num_fs_views; - struct rbug_sampler_view *vert_sampler_views[PIPE_MAX_VERTEX_SAMPLERS]; - unsigned num_vert_sampler_views; + struct rbug_sampler_view *vs_views[PIPE_MAX_VERTEX_SAMPLERS]; + struct rbug_resource *vs_texs[PIPE_MAX_VERTEX_SAMPLERS]; + unsigned num_vs_views; unsigned nr_cbufs; struct rbug_resource *cbufs[PIPE_MAX_COLOR_BUFS]; |