Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
glslang
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
glslang
Commits
8c1c2ca0
Commit
8c1c2ca0
authored
Dec 06, 2015
by
John Kessenich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Built-ins: fix mapping of packDouble2x32 and unpackDouble2x32.
parent
2359bd0a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
400.frag.out
Test/baseResults/400.frag.out
+4
-4
revision.h
glslang/Include/revision.h
+1
-1
Initialize.cpp
glslang/MachineIndependent/Initialize.cpp
+2
-2
No files found.
Test/baseResults/400.frag.out
View file @
8c1c2ca0
...
@@ -308,11 +308,11 @@ ERROR: node is still EOpNull!
...
@@ -308,11 +308,11 @@ ERROR: node is still EOpNull!
0:95 'u1' (temp uint)
0:95 'u1' (temp uint)
0:99 move second child to first child (temp double)
0:99 move second child to first child (temp double)
0:99 'd' (temp double)
0:99 'd' (temp double)
0:99 Pack
Unorm4x8
(global double)
0:99 Pack
Double2x32
(global double)
0:99 'u2' (temp 2-component vector of uint)
0:99 'u2' (temp 2-component vector of uint)
0:100 move second child to first child (temp 2-component vector of uint)
0:100 move second child to first child (temp 2-component vector of uint)
0:100 'u2' (temp 2-component vector of uint)
0:100 'u2' (temp 2-component vector of uint)
0:100 Unpack
Unorm4x8
(global 2-component vector of uint)
0:100 Unpack
Double2x32
(global 2-component vector of uint)
0:100 'd' (temp double)
0:100 'd' (temp double)
0:117 Function Definition: interp( (global void)
0:117 Function Definition: interp( (global void)
0:117 Function Parameters:
0:117 Function Parameters:
...
@@ -797,11 +797,11 @@ ERROR: node is still EOpNull!
...
@@ -797,11 +797,11 @@ ERROR: node is still EOpNull!
0:95 'u1' (temp uint)
0:95 'u1' (temp uint)
0:99 move second child to first child (temp double)
0:99 move second child to first child (temp double)
0:99 'd' (temp double)
0:99 'd' (temp double)
0:99 Pack
Unorm4x8
(global double)
0:99 Pack
Double2x32
(global double)
0:99 'u2' (temp 2-component vector of uint)
0:99 'u2' (temp 2-component vector of uint)
0:100 move second child to first child (temp 2-component vector of uint)
0:100 move second child to first child (temp 2-component vector of uint)
0:100 'u2' (temp 2-component vector of uint)
0:100 'u2' (temp 2-component vector of uint)
0:100 Unpack
Unorm4x8
(global 2-component vector of uint)
0:100 Unpack
Double2x32
(global 2-component vector of uint)
0:100 'd' (temp double)
0:100 'd' (temp double)
0:117 Function Definition: interp( (global void)
0:117 Function Definition: interp( (global void)
0:117 Function Parameters:
0:117 Function Parameters:
...
...
glslang/Include/revision.h
View file @
8c1c2ca0
...
@@ -2,5 +2,5 @@
...
@@ -2,5 +2,5 @@
// For the version, it uses the latest git tag followed by the number of commits.
// 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).
// For the date, it uses the current date (when then script is run).
#define GLSLANG_REVISION "SPIRV99.82
3
"
#define GLSLANG_REVISION "SPIRV99.82
4
"
#define GLSLANG_DATE "06-Dec-2015"
#define GLSLANG_DATE "06-Dec-2015"
glslang/MachineIndependent/Initialize.cpp
View file @
8c1c2ca0
...
@@ -3279,8 +3279,8 @@ void IdentifyBuiltIns(int version, EProfile profile, int spv, EShLanguage langua
...
@@ -3279,8 +3279,8 @@ void IdentifyBuiltIns(int version, EProfile profile, int spv, EShLanguage langua
symbolTable
.
relateToOperator
(
"packUnorm4x8"
,
EOpPackUnorm4x8
);
symbolTable
.
relateToOperator
(
"packUnorm4x8"
,
EOpPackUnorm4x8
);
symbolTable
.
relateToOperator
(
"unpackUnorm4x8"
,
EOpUnpackUnorm4x8
);
symbolTable
.
relateToOperator
(
"unpackUnorm4x8"
,
EOpUnpackUnorm4x8
);
symbolTable
.
relateToOperator
(
"packDouble2x32"
,
EOpPack
Unorm4x8
);
symbolTable
.
relateToOperator
(
"packDouble2x32"
,
EOpPack
Double2x32
);
symbolTable
.
relateToOperator
(
"unpackDouble2x32"
,
EOpUnpack
Unorm4x8
);
symbolTable
.
relateToOperator
(
"unpackDouble2x32"
,
EOpUnpack
Double2x32
);
symbolTable
.
relateToOperator
(
"packHalf2x16"
,
EOpPackHalf2x16
);
symbolTable
.
relateToOperator
(
"packHalf2x16"
,
EOpPackHalf2x16
);
symbolTable
.
relateToOperator
(
"unpackHalf2x16"
,
EOpUnpackHalf2x16
);
symbolTable
.
relateToOperator
(
"unpackHalf2x16"
,
EOpUnpackHalf2x16
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment