summaryrefslogtreecommitdiff
path: root/src/glsl/builtins/ir/noise1
blob: eb7be3585750a5ec94b45ca7f8c50b6e6e3d5ae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
((function noise1
   (signature float
     (parameters
       (declare (in) float x))
     ((return (constant float (0)))))
   (signature float
     (parameters
       (declare (in) vec2 x))
     ((return (constant float (0)))))
   (signature float
     (parameters
       (declare (in) vec3 x))
     ((return (constant float (0)))))
   (signature float
     (parameters
       (declare (in) vec4 x))
     ((return (constant float (0)))))
))