diff options
author | Chia-I Wu <[email protected]> | 2013-05-29 14:39:17 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2013-06-07 11:13:14 +0800 |
commit | 3bc8289f49f6f1a7256c7d199d09d3753c10af3a (patch) | |
tree | 64c037d5dc1debe5764c2d7598dfda78fc920193 /src/gallium/drivers/ilo/ilo_context.h | |
parent | 6b14b392d04d8f1b43d565f65cdbd738b9f950a7 (diff) |
ilo: switch to ilo states for SOL stage
Define and use
struct ilo_so_state;
in ilo_context.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_context.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_context.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gallium/drivers/ilo/ilo_context.h b/src/gallium/drivers/ilo/ilo_context.h index 07905b70176..52225c8eacc 100644 --- a/src/gallium/drivers/ilo/ilo_context.h +++ b/src/gallium/drivers/ilo/ilo_context.h @@ -60,6 +60,8 @@ struct ilo_context { const struct ilo_ve_state *ve; struct ilo_ib_state ib; + struct ilo_so_state so; + struct pipe_blend_state *blend; struct pipe_rasterizer_state *rasterizer; struct pipe_depth_stencil_alpha_state *depth_stencil_alpha; @@ -92,12 +94,6 @@ struct ilo_context { } constant_buffers[PIPE_SHADER_TYPES]; struct { - struct pipe_stream_output_target *targets[ILO_MAX_SO_BUFFERS]; - unsigned num_targets; - unsigned append_bitmask; - } stream_output_targets; - - struct { struct pipe_surface *surfaces[PIPE_MAX_SHADER_RESOURCES]; unsigned num_surfaces; } shader_resources; |