summaryrefslogtreecommitdiff
path: root/builtins/110/floor
blob: 8dd8052799b3b342a9a73244340d7d03ceea71b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
((function floor
   (signature float
     (parameters
       (declare (in) float arg0))
     ((return (expression float floor (var_ref arg0)))))

   (signature vec2
     (parameters
       (declare (in) vec2 arg0))
     ((return (expression vec2 floor (var_ref arg0)))))

   (signature vec3
     (parameters
       (declare (in) vec3 arg0))
     ((return (expression vec3 floor (var_ref arg0)))))

   (signature vec4
     (parameters
       (declare (in) vec4 arg0))
     ((return (expression vec4 floor (var_ref arg0)))))
))