diff options
author | José Fonseca <[email protected]> | 2010-06-01 16:37:32 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-06-01 16:39:04 +0100 |
commit | 056ae405b6f4659619b9e13ad2ff6fb820e0a837 (patch) | |
tree | dd78acfbf8123770943329e28389ae03ea1a34b5 /src/gallium/auxiliary/tgsi/tgsi_scan.h | |
parent | 2c67e754cf45b4f0981a82bfb9936bae384aa1e3 (diff) |
tgsi: Drop uses_fogcoord and uses_frontfacing from tgsi_scan.
It was not used anywhere; the code was buggy (it didn't take care of
indirect registers and could potential cause buffer underflows) and the
same effect can now be easily achieved by just by looking at
input_semantic_name[] and input_usage_mask[].
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_scan.h')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_scan.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.h b/src/gallium/auxiliary/tgsi/tgsi_scan.h index f43541429d7..e75280336f0 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.h +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.h @@ -62,8 +62,6 @@ struct tgsi_shader_info boolean writes_z; /**< does fragment shader write Z value? */ boolean writes_edgeflag; /**< vertex shader outputs edgeflag */ boolean uses_kill; /**< KIL or KILP instruction used? */ - boolean uses_fogcoord; /**< fragment shader uses fog coord? */ - boolean uses_frontfacing; /**< fragment shader uses front/back-face flag? */ struct { unsigned name; |