diff options
author | Jason Ekstrand <[email protected]> | 2015-08-19 09:56:57 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-08-25 10:18:27 -0700 |
commit | 8d8b8f58540abbdb8a006a38830a08346a0edf34 (patch) | |
tree | 8ca61f223029c16a59420aa465d4251f89eaea0b /src/mesa/drivers/dri/i965/brw_fs.cpp | |
parent | 0ab29751b62680cd77195bb33cf18068bd73f2f3 (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.cpp')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 82cb499a326..47cc16700e9 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -943,7 +943,8 @@ fs_visitor::import_uniforms(fs_visitor *v) } void -fs_visitor::setup_vector_uniform_values(const gl_constant_value *values, unsigned n) +fs_visitor::setup_vec4_uniform_value(const gl_constant_value *values, + unsigned n) { static const gl_constant_value zero = { 0 }; |