diff options
author | Chia-I Wu <[email protected]> | 2015-01-26 23:12:55 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2015-02-12 07:56:11 +0800 |
commit | 4cb592ec172f7892a4551cbd37272131dd172207 (patch) | |
tree | 977933190873c98595507b74482b6e7fe025b4e8 /src/gallium/drivers/ilo/ilo_state.h | |
parent | 05e2eb57cdb2ce185625038e7424ca2ef733a9aa (diff) |
ilo: update SF related functions for Gen8
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_state.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_state.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/gallium/drivers/ilo/ilo_state.h b/src/gallium/drivers/ilo/ilo_state.h index cecca3e4abd..9334ae7154d 100644 --- a/src/gallium/drivers/ilo/ilo_state.h +++ b/src/gallium/drivers/ilo/ilo_state.h @@ -219,8 +219,16 @@ struct ilo_rasterizer_clip { struct ilo_rasterizer_sf { /* 3DSTATE_SF */ - uint32_t payload[6]; + uint32_t payload[3]; uint32_t dw_msaa; + + /* Global Depth Offset Constant/Scale/Clamp */ + uint32_t dw_depth_offset_const; + uint32_t dw_depth_offset_scale; + uint32_t dw_depth_offset_clamp; + + /* Gen8+ 3DSTATE_RASTER */ + uint32_t dw_raster; }; struct ilo_rasterizer_wm { |