diff options
author | Jason Ekstrand <[email protected]> | 2017-02-28 18:38:27 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-03-01 16:14:02 -0800 |
commit | f33d2b5d055d550b9d33547d76d353457d397fc1 (patch) | |
tree | 01f7fc63b43a1f9d58f60fedbec77d2379a94b63 /src/mesa/drivers/dri/i965/brw_vs.h | |
parent | 4e274bcf668e82b19715e8784bdc018d0ff439ba (diff) |
i965: Move BRW_ATTRIB_WA_* defines to brw_compiler.h
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vs.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vs.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vs.h b/src/mesa/drivers/dri/i965/brw_vs.h index 2b49afbf1ca..0e015511d95 100644 --- a/src/mesa/drivers/dri/i965/brw_vs.h +++ b/src/mesa/drivers/dri/i965/brw_vs.h @@ -36,17 +36,6 @@ #include "brw_vec4.h" -/** - * The VF can't natively handle certain types of attributes, such as GL_FIXED - * or most 10_10_10_2 types. These flags enable various VS workarounds to - * "fix" attributes at the beginning of shaders. - */ -#define BRW_ATTRIB_WA_COMPONENT_MASK 7 /* mask for GL_FIXED scale channel count */ -#define BRW_ATTRIB_WA_NORMALIZE 8 /* normalize in shader */ -#define BRW_ATTRIB_WA_BGRA 16 /* swap r/b channels in shader */ -#define BRW_ATTRIB_WA_SIGN 32 /* interpret as signed in shader */ -#define BRW_ATTRIB_WA_SCALE 64 /* interpret as scaled in shader */ - #ifdef __cplusplus extern "C" { #endif |