glsl: Delete spurious comment about mod not taking integer operands

This hasn't been true since we added support for GLSL 1.30.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Ian Romanick 2016-07-07 22:15:53 -07:00
parent d6ad3e2dd9
commit f4af9f36e7

View file

@ -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.