diff options
author | Stéphane Marchesin <[email protected]> | 2012-01-19 16:28:23 -0800 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2012-01-19 19:27:34 -0800 |
commit | 2f9df215a2994eafa29f4ff646934eb698e902cd (patch) | |
tree | 52a42c59d72e28ae3b73ea1a3bc6a7c94730707b /src/gallium | |
parent | 4f82fed49359676fc19598f8c65ca51958dd2d79 (diff) |
i915g: Fix indentation and comment.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/i915/i915_state_emit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/i915/i915_state_emit.c b/src/gallium/drivers/i915/i915_state_emit.c index 9d487cfcdc1..9c941ae9e41 100644 --- a/src/gallium/drivers/i915/i915_state_emit.c +++ b/src/gallium/drivers/i915/i915_state_emit.c @@ -385,8 +385,8 @@ emit_program(struct i915_context *i915) OUT_BATCH(size); } - /* output the declarations of the program */ - for (i=1 ; i < i915->fs->program_len; i++) + /* output the declarations and the program */ + for (i = 1 ; i < i915->fs->program_len; i++) OUT_BATCH(i915->fs->program[i]); /* we emit an additional mov with swizzle to fake RGBA framebuffers */ |