summaryrefslogtreecommitdiff
path: root/src/glsl/ir_print_visitor.cpp
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-08-11 14:00:36 -0600
committerBrian Paul <brianp@vmware.com>2010-08-11 15:06:12 -0600
commitd3b66be3c7a3e9e29913ea86880c516e2b7a3ce0 (patch)
tree70d223dd14bd231ea36017c8171f69445956586a /src/glsl/ir_print_visitor.cpp
parentffd3f15e965d451b1aef032015cc2edea66c30fa (diff)
glsl2: added casts to silence warnings
Diffstat (limited to 'src/glsl/ir_print_visitor.cpp')
-rw-r--r--src/glsl/ir_print_visitor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/glsl/ir_print_visitor.cpp b/src/glsl/ir_print_visitor.cpp
index 39b11bb32c..83e6403272 100644
--- a/src/glsl/ir_print_visitor.cpp
+++ b/src/glsl/ir_print_visitor.cpp
@@ -45,7 +45,7 @@ _mesa_print_ir(exec_list *instructions,
const glsl_type *const s = state->user_structures[i];
printf("(structure (%s) (%s@%p) (%u) (\n",
- s->name, s->name, s, s->length);
+ s->name, s->name, (void *) s, s->length);
for (unsigned j = 0; j < s->length; j++) {
printf("\t((");
@@ -83,7 +83,7 @@ print_type(const glsl_type *t)
printf(" %u)", t->length);
} else if ((t->base_type == GLSL_TYPE_STRUCT)
&& (strncmp("gl_", t->name, 3) != 0)) {
- printf("%s@%p", t->name, t);
+ printf("%s@%p", t->name, (void *) t);
} else {
printf("%s", t->name);
}
@@ -104,7 +104,7 @@ void ir_print_visitor::visit(ir_variable *ir)
cent, inv, mode[ir->mode], interp[ir->interpolation]);
print_type(ir->type);
- printf(" %s@%p)", ir->name, ir);
+ printf(" %s@%p)", ir->name, (void *) ir);
}
@@ -266,7 +266,7 @@ void ir_print_visitor::visit(ir_swizzle *ir)
void ir_print_visitor::visit(ir_dereference_variable *ir)
{
ir_variable *var = ir->variable_referenced();
- printf("(var_ref %s@%p) ", var->name, var);
+ printf("(var_ref %s@%p) ", var->name, (void *) var);
}