Browse Source
Merge pull request #1951 from Tinob/master
Add missing uintBitsToFloat to SetRegisterToHalfFloat
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/video_core/renderer_opengl/gl_shader_decompiler.cpp
|
|
|
@ -493,10 +493,10 @@ public: |
|
|
|
// pack. I couldn't test this on hardware but it shouldn't really matter since most
|
|
|
|
// of the time when a Mrg_* flag is used both components will be mirrored. That
|
|
|
|
// being said, it deserves a test.
|
|
|
|
return "((" + GetRegisterAsInteger(reg, 0, false) + |
|
|
|
return "uintBitsToFloat((" + GetRegisterAsInteger(reg, 0, false) + |
|
|
|
" & 0xffff0000) | (packHalf2x16(" + value + ") & 0x0000ffff))"; |
|
|
|
case Tegra::Shader::HalfMerge::Mrg_H1: |
|
|
|
return "((" + GetRegisterAsInteger(reg, 0, false) + |
|
|
|
return "uintBitsToFloat((" + GetRegisterAsInteger(reg, 0, false) + |
|
|
|
" & 0x0000ffff) | (packHalf2x16(" + value + ") & 0xffff0000))"; |
|
|
|
default: |
|
|
|
UNREACHABLE(); |
|
|
|
|