diff options
author | Michal Krol <[email protected]> | 2009-11-23 10:49:41 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-11-23 10:49:41 +0100 |
commit | cc35a454da08e7303c76a51972bcccf7d67b7704 (patch) | |
tree | 4b81e6b0afadd5fcd68e8e055a5fe85a6d12fa79 /src/gallium/auxiliary/tgsi/tgsi_exec.h | |
parent | b7590cde4a475cd785030d7c7909846ae72608e5 (diff) |
tgsi: Fix POSITION and FACE fragment shader inputs.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.h')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.h b/src/gallium/auxiliary/tgsi/tgsi_exec.h index f0aaca92b30..3dff69a5059 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.h +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.h @@ -232,6 +232,7 @@ struct tgsi_exec_machine /* FRAGMENT processor only. */ const struct tgsi_interp_coef *InterpCoefs; struct tgsi_exec_vector QuadPos; + float Face; /**< +1 if front facing, -1 if back facing */ /* Conditional execution masks */ uint CondMask; /**< For IF/ELSE/ENDIF */ |