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
d18bcd64
Unverified
Commit
d18bcd64
authored
Mar 17, 2021
by
greg-lunarg
Committed by
GitHub
Mar 17, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2574 from feifei14119/master
fix typo for u64vec2/3/4 type define value
parents
f5929b8c
e3235cb2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
gl_types.h
glslang/MachineIndependent/gl_types.h
+3
-3
reflection.cpp
glslang/MachineIndependent/reflection.cpp
+2
-2
No files found.
glslang/MachineIndependent/gl_types.h
View file @
d18bcd64
...
...
@@ -49,9 +49,9 @@
#define GL_INT64_VEC4_ARB 0x8FEB
#define GL_UNSIGNED_INT64_ARB 0x140F
#define GL_UNSIGNED_INT64_VEC2_ARB 0x8F
E
5
#define GL_UNSIGNED_INT64_VEC3_ARB 0x8F
E
6
#define GL_UNSIGNED_INT64_VEC4_ARB 0x8F
E
7
#define GL_UNSIGNED_INT64_VEC2_ARB 0x8F
F
5
#define GL_UNSIGNED_INT64_VEC3_ARB 0x8F
F
6
#define GL_UNSIGNED_INT64_VEC4_ARB 0x8F
F
7
#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1
#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2
#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3
...
...
glslang/MachineIndependent/reflection.cpp
View file @
d18bcd64
...
...
@@ -907,8 +907,8 @@ public:
case
EbtFloat16
:
return
GL_FLOAT16_VEC2_NV
+
offset
;
case
EbtInt
:
return
GL_INT_VEC2
+
offset
;
case
EbtUint
:
return
GL_UNSIGNED_INT_VEC2
+
offset
;
case
EbtInt64
:
return
GL_INT64_
ARB
+
offset
;
case
EbtUint64
:
return
GL_UNSIGNED_INT64_
ARB
+
offset
;
case
EbtInt64
:
return
GL_INT64_
VEC2_ARB
+
offset
;
case
EbtUint64
:
return
GL_UNSIGNED_INT64_
VEC2_ARB
+
offset
;
case
EbtBool
:
return
GL_BOOL_VEC2
+
offset
;
case
EbtAtomicUint
:
return
GL_UNSIGNED_INT_ATOMIC_COUNTER
+
offset
;
default:
return
0
;
...
...
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