From 904872372e9822a06fdebd9248b8bd50198cf4b4 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Tue, 23 Mar 2010 15:17:49 -0700 Subject: Typo fixes: de/re/ference. --- ir.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ir.h') diff --git a/ir.h b/ir.h index bbf53540db..b0c2f14e12 100644 --- a/ir.h +++ b/ir.h @@ -202,7 +202,7 @@ public: /** * Value being assigned * - * This should be either \c ir_op_expression or \c ir_op_deference. + * This should be either \c ir_op_expression or \c ir_op_dereference. */ ir_instruction *rhs; @@ -414,7 +414,7 @@ public: /** * Object being dereferenced. * - * Must be either an \c ir_variable or an \c ir_deference. + * Must be either an \c ir_variable or an \c ir_dereference. */ ir_instruction *var; -- cgit v1.2.3 From f25a5ad93961c335b56d4f0508cc5c00b77ee519 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Thu, 25 Mar 2010 11:22:42 -0700 Subject: Widen num_components to handle vec4 correctly. --- ir.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ir.h') diff --git a/ir.h b/ir.h index b0c2f14e12..530c7326a3 100644 --- a/ir.h +++ b/ir.h @@ -379,7 +379,7 @@ struct ir_swizzle_mask { /** * Number of components in the swizzle. */ - unsigned num_components:2; + unsigned num_components:3; /** * Does the swizzle contain duplicate components? -- cgit v1.2.3