aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs.h
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2015-08-19 09:56:57 -0700
committerJason Ekstrand <[email protected]>2015-08-25 10:18:27 -0700
commit8d8b8f58540abbdb8a006a38830a08346a0edf34 (patch)
tree8ca61f223029c16a59420aa465d4251f89eaea0b /src/mesa/drivers/dri/i965/brw_fs.h
parent0ab29751b62680cd77195bb33cf18068bd73f2f3 (diff)
i965: Rename setup_vector_uniform_values to setup_vec4_uniform_value
The new name more accurately represents what it does: Set up a single vec4 uniform value. 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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h
index 975183e990d..1a56c2aac2e 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -291,8 +291,8 @@ public:
struct brw_reg interp_reg(int location, int channel);
- virtual void setup_vector_uniform_values(const gl_constant_value *values,
- unsigned n);
+ virtual void setup_vec4_uniform_value(const gl_constant_value *values,
+ unsigned n);
int implied_mrf_writes(fs_inst *inst);