6 // Check that builtins may not be overloaded, even with different parameters.
8 // From GLSL ES 3.0 spec, chapter 6.1 "Function Definitions", page 71:
10 // "A shader cannot redefine or overload built-in functions."
14 int sqrt(int x) { return x; }