summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_fs.h
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2010-04-14 01:12:49 +0200
committerMarek Olšák <maraeo@gmail.com>2010-04-14 04:48:19 +0200
commit36e0100e9e6afe7a00846514daffb8993dcc173e (patch)
tree96eeeb34d144af9aedb61d289750be0697c6fb7f /src/gallium/drivers/r300/r300_fs.h
parentc57bac1f13d2bb00d04d8436d2042f0ab02549d4 (diff)
r300g: kill off r300_fragment_shader::shadow_samplers and friends
Diffstat (limited to 'src/gallium/drivers/r300/r300_fs.h')
-rw-r--r--src/gallium/drivers/r300/r300_fs.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gallium/drivers/r300/r300_fs.h b/src/gallium/drivers/r300/r300_fs.h
index 18da5f7562..014703b2c4 100644
--- a/src/gallium/drivers/r300/r300_fs.h
+++ b/src/gallium/drivers/r300/r300_fs.h
@@ -38,9 +38,6 @@ struct r300_fragment_shader_code {
* compilation failure. */
boolean dummy;
- /* Bits 0-15: TRUE if it's a shadow sampler, FALSE otherwise. */
- unsigned shadow_samplers;
-
/* Numbers of constants for each type. */
unsigned externals_count;
unsigned immediates_count;
@@ -56,10 +53,6 @@ struct r300_fragment_shader {
/* Parent class */
struct pipe_shader_state state;
- /* Bits 0-15: TRUE if it's a shadow sampler, FALSE otherwise.
- * Initialized from the first compiled FS. */
- unsigned shadow_samplers;
-
/* Currently-bound fragment shader. */
struct r300_fragment_shader_code* shader;