diff options
author | Kenneth Graunke <[email protected]> | 2010-09-19 04:50:28 +0200 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2010-09-20 17:31:16 +0200 |
commit | 14eea268284491d64ff92b37723bff1e9ff14b40 (patch) | |
tree | b7bcff8fb641934d928246c4c79e5eb474834a56 /src/glsl | |
parent | 0bc3e1f4f4b0827ac4a880cdbdb1da069e80fac9 (diff) |
glsl: Add comments to clarify the types of comparison binops.
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/ir.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h index 909f8242a78..240e7cd49af 100644 --- a/src/glsl/ir.h +++ b/src/glsl/ir.h @@ -719,7 +719,8 @@ enum ir_expression_operation { ir_binop_mod, /** - * \name Binary comparison operators + * \name Binary comparison operators which return a boolean vector. + * The type of both operands must be equal. */ /*@{*/ ir_binop_less, |