diff options
author | Eric Anholt <[email protected]> | 2012-11-20 17:43:31 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-12-28 10:53:45 -0800 |
commit | c0d1f508d6d471cf44329f43d8a79230ed8db0b6 (patch) | |
tree | 03b4d4f8add8899c398770d7a16c4a2f0685d3ab /src/mesa/drivers/dri/i965/brw_fs.h | |
parent | bd326623ef5f5ed51a843c33cc72007ff178de13 (diff) |
i965/fs: Reference the core GL uniform storage for non-builtin uniforms.
There's no reason to use an external copy if the relayout in the
external copy isn't serving us.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index d80129887bc..bcf38f3cf79 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -407,7 +407,7 @@ public: fs_reg get_timestamp(); struct brw_reg interp_reg(int location, int channel); - int setup_uniform_values(int loc, const glsl_type *type); + void setup_uniform_values(ir_variable *ir); void setup_builtin_uniform_values(ir_variable *ir); int implied_mrf_writes(fs_inst *inst); |