~ubuntu-branches/ubuntu/raring/mesa/raring-proposed

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2011-06-19 21:26:00 UTC
  • mfrom: (1.6.1 upstream) (3.3.18 sid)
  • mto: (3.3.20 sid)
  • mto: This revision was merged to the branch mainline in revision 145.
  • Revision ID: james.westby@ubuntu.com-20110619212600-rleaapdmnbtstekb
Tags: 7.11~0-2
Thank you sbuild for giving a green light when that's not actually the
case. Fix missing Pre-Depends for the libegl1-mesa-drivers package
(multiarch-support).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
((function pow
 
2
   (signature float
 
3
     (parameters
 
4
       (declare (in) float arg0)
 
5
       (declare (in) float arg1))
 
6
     ((return (expression float pow (var_ref arg0) (var_ref arg1)))))
 
7
 
 
8
   (signature vec2
 
9
     (parameters
 
10
       (declare (in) vec2 arg0)
 
11
       (declare (in) vec2 arg1))
 
12
     ((return (expression vec2 pow (var_ref arg0) (var_ref arg1)))))
 
13
 
 
14
   (signature vec3
 
15
     (parameters
 
16
       (declare (in) vec3 arg0)
 
17
       (declare (in) vec3 arg1))
 
18
     ((return (expression vec3 pow (var_ref arg0) (var_ref arg1)))))
 
19
 
 
20
   (signature vec4
 
21
     (parameters
 
22
       (declare (in) vec4 arg0)
 
23
       (declare (in) vec4 arg1))
 
24
     ((return (expression vec4 pow (var_ref arg0) (var_ref arg1)))))
 
25
))