diff options
author | Brian Paul <[email protected]> | 2010-01-18 17:39:54 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-18 17:39:54 -0700 |
commit | 9a23d810be02edf740ce58196435cd6cdfd903c9 (patch) | |
tree | b43662764b223595d3218c39cee9319c6e2db8e5 /src | |
parent | 89bb07730b1c0f292d1d70a99466e8a885fb87bf (diff) |
llvmpipe: tweak a comment
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_state_fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c index 4b51d6b964f..ab545ed3de6 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_fs.c +++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c @@ -666,7 +666,7 @@ generate_fragment(struct llvmpipe_context *lp, arg_types[6] = LLVMPointerType(LLVMPointerType(blend_vec_type, 0), 0); /* color */ arg_types[7] = LLVMPointerType(fs_int_vec_type, 0); /* depth */ arg_types[8] = LLVMInt32Type(); /* c0 */ - arg_types[9] = LLVMInt32Type(); /* c1 */ + arg_types[9] = LLVMInt32Type(); /* c1 */ arg_types[10] = LLVMInt32Type(); /* c2 */ /* Note: the step arrays are built as int32[16] but we interpret * them here as int32_vec4[4]. |