summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorMichal Krol <mjkrol@gmail.org>2006-08-02 14:45:24 +0000
committerMichal Krol <mjkrol@gmail.org>2006-08-02 14:45:24 +0000
commit7a7039157570f5d178077289f70091399fd57863 (patch)
tree109a45c8f1589472569d4924bbff5aa98952cb19 /progs
parent3b5e02cc7cecc88887da0bda009d828b124499a2 (diff)
Add test for vec4 extension.
Diffstat (limited to 'progs')
-rw-r--r--progs/slang/cltest.txt152
1 files changed, 152 insertions, 0 deletions
diff --git a/progs/slang/cltest.txt b/progs/slang/cltest.txt
index 8ca1dd40f97..07fee4de57e 100644
--- a/progs/slang/cltest.txt
+++ b/progs/slang/cltest.txt
@@ -1400,3 +1400,155 @@ true
2.3
2.4
+
+$ /*
+$ --------------------------------------------------------------------------------------------------
+$ Test vec4 extension operations.
+$ */
+
+$program VEC4 EXTENSION OPERATIONS
+
+$attrib gl_Vertex
+0.0 0.0 0.0 1.0
+
+$attrib _One
+1.1 0.0 0.0 0.0
+
+$attrib _Two4
+2.1 2.2 2.3 2.4
+
+$attrib _Three4
+3.1 3.2 3.3 3.4
+
+$vertex
+
+$code
+
+attribute float _One;
+attribute vec4 _Two4;
+attribute vec4 _Three4;
+
+void main () {
+ gl_Position = gl_ModelViewMatrix * gl_Vertex;
+ gl_FrontColor = vec4 (1.0);
+
+ printMESA (_One);
+ printMESA (_Two4);
+ printMESA (_Three4);
+
+ printMESA (vec4 (_One));
+
+ printMESA (_Two4 + _Three4);
+ printMESA (_Two4 - _Three4);
+ printMESA (_Two4 * _Three4);
+ printMESA (_Two4 / _Three4);
+
+ printMESA (_Two4 + _One);
+ printMESA (_Two4 - _One);
+ printMESA (_Two4 * _One);
+ printMESA (_Two4 / _One);
+
+ printMESA (_One + _Two4);
+ printMESA (_One - _Two4);
+ printMESA (_One * _Two4);
+ printMESA (_One / _Two4);
+
+ printMESA (-_Three4);
+
+ printMESA (dot (_Two4.xyz, _Three4.xyz));
+ printMESA (dot (_Two4, _Three4));
+
+ printMESA (length (_Two4.xyz));
+ printMESA (length (_Three4));
+
+ printMESA (normalize (_Two4.xyz));
+ printMESA (normalize (_Three4));
+}
+
+$output
+
+1.1
+2.1
+2.2
+2.3
+2.4
+3.1
+3.2
+3.3
+3.4
+
+1.1
+1.1
+1.1
+1.1
+
+5.2
+5.4
+5.6
+5.8
+-1.0
+-1.0
+-1.0
+-1.0
+6.51
+7.04
+7.59
+8.16
+0.677419
+0.6875
+0.69697
+0.705882
+
+3.2
+3.3
+3.4
+3.5
+1.0
+1.1
+1.2
+1.3
+2.31
+2.42
+2.53
+2.64
+1.909091
+2.0
+2.090909
+2.181818
+
+3.2
+3.3
+3.4
+3.5
+-1.0
+-1.1
+-1.2
+-1.3
+2.31
+2.42
+2.53
+2.64
+0.52381
+0.5
+0.478261
+0.458333
+
+-3.1
+-3.2
+-3.3
+-3.4
+
+21.14
+29.3
+
+3.813135
+6.503845
+
+0.550728
+0.576953
+0.603178
+0.476641
+0.492017
+0.507392
+0.522768
+