r300g: kill off r300_fragment_shader::shadow_samplers and friends
authorMarek Olšák <maraeo@gmail.com>
Tue, 13 Apr 2010 23:12:49 +0000 (01:12 +0200)
committerMarek Olšák <maraeo@gmail.com>
Wed, 14 Apr 2010 02:48:19 +0000 (04:48 +0200)
src/gallium/drivers/r300/r300_fs.c
src/gallium/drivers/r300/r300_fs.h

index 6af6028447fbdb501857d13d82b724e03117b90b..f75d282205e15ee3e02547c32f2a52f4dfee3596 100644 (file)
@@ -253,8 +253,6 @@ static void r300_translate_fragment_shader(
 
     r300_tgsi_to_rc(&ttr, tokens);
 
-    shader->shadow_samplers = compiler.Base.Program.ShadowSamplers;
-
     /**
      * Transform the program to support WPOS.
      *
index 18da5f7562508ef10dfcfe6b832cf6644017eee3..014703b2c4dac757c7edeb7cebb64b474a406347 100644 (file)
@@ -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;