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_gpe.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_gpe.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_gpe.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gallium/drivers/ilo/ilo_gpe.h b/src/gallium/drivers/ilo/ilo_gpe.h index 4288ed5c25e..8bb1ddf3a7b 100644 --- a/src/gallium/drivers/ilo/ilo_gpe.h +++ b/src/gallium/drivers/ilo/ilo_gpe.h @@ -88,4 +88,18 @@ struct ilo_rasterizer_state { struct pipe_rasterizer_state state; }; +struct ilo_dsa_state { + struct pipe_depth_stencil_alpha_state state; +}; + +struct ilo_blend_state { + struct pipe_blend_state state; +}; + +struct ilo_fb_state { + struct pipe_framebuffer_state state; + + unsigned num_samples; +}; + #endif /* ILO_GPE_H */ |