glsl: replace remaining tabs in ir_builder.cpp
authorTimothy Arceri <timothy.arceri@collabora.com>
Wed, 24 Feb 2016 08:45:37 +0000 (19:45 +1100)
committerTimothy Arceri <timothy.arceri@collabora.com>
Thu, 3 Mar 2016 00:25:57 +0000 (11:25 +1100)
Reviewed-by: Thomas Helland <thomashelland90@gmail.com>
src/compiler/glsl/ir_builder.cpp

index c9cf1240dfebca5baefb02ac72b90f4e2b065ae1..d68647f4234da45ad12a6e37785dd7ca34b13f1a 100644 (file)
@@ -51,7 +51,7 @@ assign(deref lhs, operand rhs, operand condition, int writemask)
    void *mem_ctx = ralloc_parent(lhs.val);
 
    ir_assignment *assign = new(mem_ctx) ir_assignment(lhs.val,
-                                                     rhs.val,
+                                                      rhs.val,
                                                       condition.val,
                                                       writemask);
 
@@ -89,11 +89,11 @@ swizzle(operand a, int swizzle, int components)
    void *mem_ctx = ralloc_parent(a.val);
 
    return new(mem_ctx) ir_swizzle(a.val,
-                                 GET_SWZ(swizzle, 0),
-                                 GET_SWZ(swizzle, 1),
-                                 GET_SWZ(swizzle, 2),
-                                 GET_SWZ(swizzle, 3),
-                                 components);
+                                  GET_SWZ(swizzle, 0),
+                                  GET_SWZ(swizzle, 1),
+                                  GET_SWZ(swizzle, 2),
+                                  GET_SWZ(swizzle, 3),
+                                  components);
 }
 
 ir_swizzle *