diff options
author | Chia-I Wu <[email protected]> | 2013-05-29 15:06:48 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2013-06-07 11:13:15 +0800 |
commit | 94212915ee8f7bf98c8adfe248a05a382d00c191 (patch) | |
tree | 0a446299c9c70f183018996cc6b0ce836515f9f6 /src/gallium/drivers/ilo/ilo_context.h | |
parent | 29b938d9f43a4bc355ee05cad2c9796ea7ee93dd (diff) |
ilo: switch to ilo states for CC stage
Define and use
struct ilo_dsa_state;
struct ilo_blend_state;
struct ilo_fb_state;
in ilo_context.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_context.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_context.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/drivers/ilo/ilo_context.h b/src/gallium/drivers/ilo/ilo_context.h index be7d94df1dc..56ef8bef5c7 100644 --- a/src/gallium/drivers/ilo/ilo_context.h +++ b/src/gallium/drivers/ilo/ilo_context.h @@ -70,16 +70,16 @@ struct ilo_context { struct pipe_poly_stipple poly_stipple; unsigned sample_mask; - struct pipe_blend_state *blend; - struct pipe_depth_stencil_alpha_state *depth_stencil_alpha; + const struct ilo_dsa_state *dsa; + struct pipe_stencil_ref stencil_ref; + const struct ilo_blend_state *blend; + struct pipe_blend_color blend_color; + struct ilo_fb_state fb; + struct ilo_shader_state *fs; struct ilo_shader_state *vs; struct ilo_shader_state *gs; - struct pipe_blend_color blend_color; - struct pipe_stencil_ref stencil_ref; - struct pipe_framebuffer_state framebuffer; - struct { struct pipe_sampler_state *samplers[ILO_MAX_SAMPLERS]; unsigned num_samplers; |