~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/glsl/builtins/ir/noise1

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
((function noise1
2
 
   (signature float
3
 
     (parameters
4
 
       (declare (in) float x))
5
 
     ((return (expression float noise (var_ref x)))))
6
 
   (signature float
7
 
     (parameters
8
 
       (declare (in) vec2 x))
9
 
     ((return (expression float noise (var_ref x)))))
10
 
   (signature float
11
 
     (parameters
12
 
       (declare (in) vec3 x))
13
 
     ((return (expression float noise (var_ref x)))))
14
 
   (signature float
15
 
     (parameters
16
 
       (declare (in) vec4 x))
17
 
     ((return (expression float noise (var_ref x)))))
18
 
))