diff options
author | Matt Turner <[email protected]> | 2014-06-29 17:32:14 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-07-05 22:42:30 -0700 |
commit | ab74a42eef781b05bab2c67acbd37484f0e3aa2f (patch) | |
tree | 0895331890ec70bdd761f8941894c1416dd12067 /src/mesa/drivers/dri/i965/brw_fs.h | |
parent | 3de11cacf0cb307ff3b4130746732d9db73d7583 (diff) |
i965: Move common fields into backend_instruction.
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 4781079ab8d..da4d373508a 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -183,31 +183,19 @@ public: fs_reg dst; fs_reg *src; - uint32_t texture_offset; /**< Texture offset bitfield */ - uint32_t offset; /* spill/unspill offset */ - uint8_t sources; /**< Number of fs_reg sources. */ - uint8_t conditional_mod; /**< BRW_CONDITIONAL_* */ /* Chooses which flag subregister (f0.0 or f0.1) is used for conditional * mod and predication. */ uint8_t flag_subreg; - uint8_t mlen; /**< SEND message length */ uint8_t regs_written; /**< Number of vgrfs written by a SEND message, or 1 */ - int8_t base_mrf; /**< First MRF in the SEND message, if mlen is nonzero. */ - uint8_t sampler; - uint8_t target; /**< MRT target. */ - bool saturate:1; bool eot:1; bool header_present:1; bool shadow_compare:1; bool force_uncompressed:1; bool force_sechalf:1; - bool force_writemask_all:1; - bool no_dd_clear:1; - bool no_dd_check:1; }; /** |