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
fdd13ca1
Unverified
Commit
fdd13ca1
authored
Sep 11, 2019
by
John Kessenich
Committed by
GitHub
Sep 11, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1895 from amdrexu/bugfix
Fix incorrect function prototypes of 64-bit findLSB/findMSB
parents
664ad418
3b1b9e29
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
Initialize.cpp
glslang/MachineIndependent/Initialize.cpp
+19
-19
No files found.
glslang/MachineIndependent/Initialize.cpp
View file @
fdd13ca1
...
...
@@ -996,25 +996,25 @@ void TBuiltIns::initialize(int version, EProfile profile, const SpvVersion& spvV
"bvec3 notEqual(u64vec3, u64vec3);"
"bvec4 notEqual(u64vec4, u64vec4);"
"int
findLSB(int64_t);"
"ivec2 findLSB(i64vec2);"
"ivec3 findLSB(i64vec3);"
"ivec4 findLSB(i64vec4);"
"int
findLSB(uint64_t);"
"ivec2 findLSB(u64vec2);"
"ivec3 findLSB(u64vec3);"
"ivec4 findLSB(u64vec4);"
"int
findMSB(int64_t);"
"ivec2 findMSB(i64vec2);"
"ivec3 findMSB(i64vec3);"
"ivec4 findMSB(i64vec4);"
"int
findMSB(uint64_t);"
"ivec2 findMSB(u64vec2);"
"ivec3 findMSB(u64vec3);"
"ivec4 findMSB(u64vec4);"
"int
64_t
findLSB(int64_t);"
"i
64
vec2 findLSB(i64vec2);"
"i
64
vec3 findLSB(i64vec3);"
"i
64
vec4 findLSB(i64vec4);"
"int
64_t
findLSB(uint64_t);"
"i
64
vec2 findLSB(u64vec2);"
"i
64
vec3 findLSB(u64vec3);"
"i
64
vec4 findLSB(u64vec4);"
"int
64_t
findMSB(int64_t);"
"i
64
vec2 findMSB(i64vec2);"
"i
64
vec3 findMSB(i64vec3);"
"i
64
vec4 findMSB(i64vec4);"
"int
64_t
findMSB(uint64_t);"
"i
64
vec2 findMSB(u64vec2);"
"i
64
vec3 findMSB(u64vec3);"
"i
64
vec4 findMSB(u64vec4);"
"
\n
"
);
...
...
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