@@ -349,7 +349,7 @@ endif::GLSL[]
349349 genIType *min*(genIType _x_, int _y_) +
350350 genUType *min*(genUType _x_, genUType _y_) +
351351 genUType *min*(genUType _x_, uint _y_)
352- | Returns _y_ if _y_ < _x;_ otherwise it returns _x_.
352+ | Returns _y_ if _y_ < _x;_ otherwise it returns _x_. Which operand is the result is undefined if one of the operands is a NaN.
353353| genFType *max*(genFType _x_, genFType _y_) +
354354 genFType *max*(genFType _x_, float _y_) +
355355ifdef::GLSL[]
@@ -360,7 +360,7 @@ endif::GLSL[]
360360 genIType *max*(genIType _x_, int _y_) +
361361 genUType *max*(genUType _x_, genUType _y_) +
362362 genUType *max*(genUType _x_, uint _y_)
363- | Returns _y_ if _x_ < _y;_ otherwise it returns _x_.
363+ | Returns _y_ if _x_ < _y;_ otherwise it returns _x_. Which operand is the result is undefined if one of the operands is a NaN.
364364| genFType *clamp*(genFType _x_, genFType _minVal_, genFType _maxVal_) +
365365 genFType *clamp*(genFType _x_, float _minVal_, float _maxVal_) +
366366ifdef::GLSL[]
@@ -988,7 +988,7 @@ Such properties are taken into account as the texture is accessed via the
988988built-in functions defined below.
989989
990990Texture data can be stored by the GL as single-precision floating-point,
991- unsigned normalized integer, unsigned integer or signed integer data.
991+ normalized integer, unsigned integer or signed integer data.
992992This is determined by the type of the internal format of the texture.
993993
994994Texture lookup functions are provided that can return their result as
@@ -1455,7 +1455,7 @@ endif::GLSL[]
14551455 See *textureProj*, *textureLod*, and *textureOffset*.
14561456|
14571457ifdef::GLSL[]
1458- gvec4 *textureGrad*(gsampler1D _sampler_, _float _P_, float _dPdx_, float _dPdy_) +
1458+ gvec4 *textureGrad*(gsampler1D _sampler_, float _P_, float _dPdx_, float _dPdy_) +
14591459endif::GLSL[]
14601460 gvec4 *textureGrad*(gsampler2D _sampler_, vec2 _P_, vec2 _dPdx_, vec2 _dPdy_) +
14611461 gvec4 *textureGrad*(gsampler3D _sampler_, vec3 _P_, vec3 _dPdx_, vec3 _dPdy_) +
0 commit comments