diff options
-rw-r--r-- | src/compiler/glsl/ir_expression_operation.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/compiler/glsl/ir_expression_operation.py b/src/compiler/glsl/ir_expression_operation.py index 5c7ad35903d..8098dac2156 100644 --- a/src/compiler/glsl/ir_expression_operation.py +++ b/src/compiler/glsl/ir_expression_operation.py @@ -145,12 +145,7 @@ ir_expression_operation = [ # from the first argument. ("borrow", 2, None), - # Takes one of two combinations of arguments: - # - # - mod(vecN, vecN) - # - mod(vecN, float) - # - # Does not take integer types. + # Either (vector % vector) or (vector % scalar) ("mod", 2, "%"), # Binary comparison operators which return a boolean vector. |