diff options
author | Eric Anholt <[email protected]> | 2011-05-02 10:45:02 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-07-11 08:58:37 -0700 |
commit | a166720f2d93b090ad1c383c9bd90d0a9e27760d (patch) | |
tree | f7ef274fe62c5ae59b91408d748a2eedfb22b46e /src/mesa/program | |
parent | 46a7639174d2c55c30ec24b179cbef059fb3ca43 (diff) |
ir_to_mesa: typo fix in a comment.
Diffstat (limited to 'src/mesa/program')
-rw-r--r-- | src/mesa/program/ir_to_mesa.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index 738e97ca55c..d8e5a3a9772 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -1415,9 +1415,9 @@ ir_to_mesa_visitor::visit(ir_dereference_variable *ir) case ir_var_in: case ir_var_inout: /* The linker assigns locations for varyings and attributes, - * including deprecated builtins (like gl_Color), user-assign - * generic attributes (glBindVertexLocation), and - * user-defined varyings. + * including deprecated builtins (like gl_Color), + * user-assigned generic attributes (glBindVertexLocation), + * and user-defined varyings. * * FINISHME: We would hit this path for function arguments. Fix! */ |