aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs.cpp
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2011-09-06 15:29:24 -0600
committerBrian Paul <[email protected]>2011-09-06 15:29:24 -0600
commit51e7b058750cc480c296d45f773d7a5a662457f5 (patch)
tree12125d171fa5181110bdce959254442d405e9b9d /src/mesa/drivers/dri/i965/brw_fs.cpp
parenta794ad3709a6eb26bc96934203c20a8b3b8d8672 (diff)
mesa: put _mesa_ prefix on vert_result_to_frag_attrib()
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index 93323739a25..1f3d9d868dd 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -672,7 +672,7 @@ fs_visitor::calculate_urb_setup()
/* FINISHME: The sf doesn't map VS->FS inputs for us very well. */
for (unsigned int i = 0; i < VERT_RESULT_MAX; i++) {
if (c->key.vp_outputs_written & BITFIELD64_BIT(i)) {
- int fp_index = vert_result_to_frag_attrib(i);
+ int fp_index = _mesa_vert_result_to_frag_attrib(i);
if (fp_index >= 0)
urb_setup[fp_index] = urb_next++;
@@ -1826,7 +1826,7 @@ brw_fs_precompile(struct gl_context *ctx, struct gl_shader_program *prog)
key.proj_attrib_mask |= 1 << i;
- int vp_index = vert_result_to_frag_attrib(i);
+ int vp_index = _mesa_vert_result_to_frag_attrib(i);
if (vp_index >= 0)
key.vp_outputs_written |= BITFIELD64_BIT(vp_index);