diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2010-04-28 22:57:47 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-05-14 16:34:46 -0700 |
commit | e4afc64290a7917fa388f4395ed7066eaba519a5 (patch) | |
tree | daa0ed9ca18722a87e929aece7835080583ff98f /builtins/110/not | |
parent | f6c90d8b3484864cd7f3abf895746e0655929a13 (diff) |
Initial commit of IR for builtins.
These were all generated by Eric's existing builtin_functions.cpp; I split
the uvec* signatures out of 110 into the 130 folder.
Diffstat (limited to 'builtins/110/not')
-rw-r--r-- | builtins/110/not | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/builtins/110/not b/builtins/110/not new file mode 100644 index 0000000000..b696b06557 --- /dev/null +++ b/builtins/110/not @@ -0,0 +1,16 @@ +((function not + (signature bvec2 + (parameters + (declare (in) bvec2 arg0)) + ((return (expression bvec2 ! (var_ref arg0))))) + + (signature bvec3 + (parameters + (declare (in) bvec3 arg0)) + ((return (expression bvec3 ! (var_ref arg0))))) + + (signature bvec4 + (parameters + (declare (in) bvec4 arg0)) + ((return (expression bvec4 ! (var_ref arg0))))) +)) |