summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2013-06-12 16:21:28 -0700
committerEric Anholt <eric@anholt.net>2013-06-21 10:04:29 -0700
commit426ca34b7a2c3b9edfc0189daece8de3aff80627 (patch)
tree8a401b75205b058c6d5b4c3ea17ecd7fdd5007ce /src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
parent2b049aa53e12accf2c5be88d1d9b66dbcab47bfb (diff)
glsl: Remove ir_print_visitor.h includes and usage
We have ir->print() to do the old declaration of a visitor and having the IR accept the visitor (yuck!). And now you can call _mesa_print_ir() safely anywhere that you know what an ir_instruction is. A couple of missing printf("\n")s are added in error paths -- when an expression is handed to the visitor, it doesn't print '\n' (since it might be a step in printing a whole expression tree). Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Paul Berry <stereotype441@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp b/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
index b9487532c59..e5c8372aeed 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
@@ -43,7 +43,6 @@ extern "C" {
}
#include "glsl/ir.h"
#include "glsl/ir_visitor.h"
-#include "glsl/ir_print_visitor.h"
#include "glsl/ir_rvalue_visitor.h"
#include "glsl/glsl_types.h"