diff options
author | Chia-I Wu <[email protected]> | 2015-06-12 14:47:02 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2015-06-15 01:07:10 +0800 |
commit | 30fcb31c9b095451ce5ac5a10c3c6b177dc03e20 (patch) | |
tree | 9e34d182e3848674f1ac85d9f97b3b3fe23a4b13 /src/gallium/drivers/ilo/ilo_state.h | |
parent | da6e45fcbc4570df0ec4b8c8885f33a206da3552 (diff) |
ilo: add ilo_state_{vs,hs,ds,gs} to ilo_shader_cso
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_state.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_state.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/ilo/ilo_state.h b/src/gallium/drivers/ilo/ilo_state.h index 3ee471e84f1..e4c6f281a5c 100644 --- a/src/gallium/drivers/ilo/ilo_state.h +++ b/src/gallium/drivers/ilo/ilo_state.h @@ -33,6 +33,7 @@ #include "core/ilo_state_raster.h" #include "core/ilo_state_sampler.h" #include "core/ilo_state_sbe.h" +#include "core/ilo_state_shader.h" #include "core/ilo_state_sol.h" #include "core/ilo_state_surface.h" #include "core/ilo_state_urb.h" @@ -269,6 +270,10 @@ struct ilo_state_vector { struct ilo_shader_state *vs; struct ilo_shader_state *gs; + struct ilo_state_hs disabled_hs; + struct ilo_state_ds disabled_ds; + struct ilo_state_gs disabled_gs; + struct ilo_so_state so; struct pipe_clip_state clip; |