Find the nearest integer that is greater than or equal to the parameter
float ceil(float x)
vec2 ceil(vec2 x)
vec3 ceil(vec3 x)
vec4 ceil(vec4 x)
x
specify the value to evaluate.
ceil()
returns a value equal to the nearest integer that is greater than or equal to x
.