From 7a4345fd83605695dc641af503f6e87b808b48d7 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 26 Jan 2011 21:16:41 -0700 Subject: glsl: use 'this' pointer to be consistent --- src/mesa/program/ir_to_mesa.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/program') diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index 08b624fdb1..404b6c646a 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -1499,7 +1499,7 @@ ir_to_mesa_visitor::visit(ir_dereference_variable *ir) var->location); if (this->prog->Target == GL_VERTEX_PROGRAM_ARB && var->location >= VERT_ATTRIB_GENERIC0) { - _mesa_add_attribute(prog->Attributes, + _mesa_add_attribute(this->prog->Attributes, var->name, _mesa_sizeof_glsl_type(var->type->gl_type), var->type->gl_type, -- cgit v1.2.3