Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
glslang
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
public-release-test-restored
platform
external
deqp-deps
glslang
Commits
f5b2c06b
Commit
f5b2c06b
authored
9 years ago
by
John Kessenich
Browse files
Options
Downloads
Patches
Plain Diff
Turn on the gpu_shader5 of the AEP .tesc test.
parent
156af43c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Test/310.tesc
+12
-12
12 additions, 12 deletions
Test/310.tesc
Test/baseResults/310.tesc.out
+40
-0
40 additions, 0 deletions
Test/baseResults/310.tesc.out
glslang/Include/revision.h
+2
-2
2 additions, 2 deletions
glslang/Include/revision.h
with
54 additions
and
14 deletions
Test/310.tesc
+
12
−
12
View file @
f5b2c06b
...
...
@@ -115,18 +115,18 @@ void pointSize2()
gl_out[1].gl_PointSize = ps;
}
// for testing with
gpu_shader5
//precise vec3 pv3;
//
//void foop()
//{
// precise double d;
//
// pv3 *= pv3;
//
pv3 =
fma(pv3, pv3, pv3)
;
//
d
= fma(
d, d, d
);
//}
//
#extension GL_OES_
gpu_shader5
: enable
precise vec3 pv3;
void goodfoop()
{
precise float d;
pv3
*
=
pv3
;
pv3
= fma(
pv3, pv3, pv3
);
d = fma(d, d, d);
}
void bbBad()
{
...
...
This diff is collapsed.
Click to expand it.
Test/baseResults/310.tesc.out
+
40
−
0
View file @
f5b2c06b
...
...
@@ -46,6 +46,7 @@ ERROR: 33 compilation errors. No code generated.
Shader version: 310
Requested GL_ARB_separate_shader_objects
Requested GL_OES_gpu_shader5
Requested GL_OES_primitive_bounding_box
Requested GL_OES_shader_io_blocks
Requested GL_OES_tessellation_point_size
...
...
@@ -221,6 +222,24 @@ ERROR: node is still EOpNull!
0:115 Constant:
0:115 1 (const int)
0:115 'ps' (temp highp float)
0:122 Function Definition: goodfoop( (global void)
0:122 Function Parameters:
0:? Sequence
0:126 multiply second child into first child (temp highp 3-component vector of float)
0:126 'pv3' (temp highp 3-component vector of float)
0:126 'pv3' (temp highp 3-component vector of float)
0:127 move second child to first child (temp highp 3-component vector of float)
0:127 'pv3' (temp highp 3-component vector of float)
0:127 Function Call: fma(vf3;vf3;vf3; (global highp 3-component vector of float)
0:127 'pv3' (temp highp 3-component vector of float)
0:127 'pv3' (temp highp 3-component vector of float)
0:127 'pv3' (temp highp 3-component vector of float)
0:128 move second child to first child (temp highp float)
0:128 'd' (temp highp float)
0:128 Function Call: fma(f1;f1;f1; (global highp float)
0:128 'd' (temp highp float)
0:128 'd' (temp highp float)
0:128 'd' (temp highp float)
0:131 Function Definition: bbBad( (global void)
0:131 Function Parameters:
0:133 Sequence
...
...
@@ -281,6 +300,7 @@ ERROR: node is still EOpNull!
0:? 'badlay' (out 4-element array of highp float)
0:? 'misSized' (out 5-element array of highp float)
0:? 'okaySize' (out 4-element array of highp float)
0:? 'pv3' (temp highp 3-component vector of float)
Linked tessellation control stage:
...
...
@@ -288,6 +308,7 @@ Linked tessellation control stage:
Shader version: 310
Requested GL_ARB_separate_shader_objects
Requested GL_OES_gpu_shader5
Requested GL_OES_primitive_bounding_box
Requested GL_OES_shader_io_blocks
Requested GL_OES_tessellation_point_size
...
...
@@ -463,6 +484,24 @@ ERROR: node is still EOpNull!
0:115 Constant:
0:115 1 (const int)
0:115 'ps' (temp highp float)
0:122 Function Definition: goodfoop( (global void)
0:122 Function Parameters:
0:? Sequence
0:126 multiply second child into first child (temp highp 3-component vector of float)
0:126 'pv3' (temp highp 3-component vector of float)
0:126 'pv3' (temp highp 3-component vector of float)
0:127 move second child to first child (temp highp 3-component vector of float)
0:127 'pv3' (temp highp 3-component vector of float)
0:127 Function Call: fma(vf3;vf3;vf3; (global highp 3-component vector of float)
0:127 'pv3' (temp highp 3-component vector of float)
0:127 'pv3' (temp highp 3-component vector of float)
0:127 'pv3' (temp highp 3-component vector of float)
0:128 move second child to first child (temp highp float)
0:128 'd' (temp highp float)
0:128 Function Call: fma(f1;f1;f1; (global highp float)
0:128 'd' (temp highp float)
0:128 'd' (temp highp float)
0:128 'd' (temp highp float)
0:131 Function Definition: bbBad( (global void)
0:131 Function Parameters:
0:133 Sequence
...
...
@@ -523,4 +562,5 @@ ERROR: node is still EOpNull!
0:? 'badlay' (out 4-element array of highp float)
0:? 'misSized' (out 5-element array of highp float)
0:? 'okaySize' (out 4-element array of highp float)
0:? 'pv3' (temp highp 3-component vector of float)
This diff is collapsed.
Click to expand it.
glslang/Include/revision.h
+
2
−
2
View file @
f5b2c06b
...
...
@@ -2,5 +2,5 @@
// For the version, it uses the latest git tag followed by the number of commits.
// For the date, it uses the current date (when then script is run).
#define GLSLANG_REVISION "2.3.72
0
"
#define GLSLANG_DATE "1
6
-Aug-2015"
#define GLSLANG_REVISION "2.3.72
1
"
#define GLSLANG_DATE "1
8
-Aug-2015"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment