Browse Source
Merge pull request #3716 from bunnei/fix-another-impl-fallthrough
video_core: gl_shader_decompiler: Fix implicit fallthrough errors.
pull/15/merge
Mat M
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
src/video_core/renderer_opengl/gl_shader_decompiler.cpp
|
|
|
@ -1145,6 +1145,7 @@ private: |
|
|
|
return {"gl_FragCoord"s + GetSwizzle(element), Type::Float}; |
|
|
|
default: |
|
|
|
UNREACHABLE(); |
|
|
|
return {"0", Type::Int}; |
|
|
|
} |
|
|
|
case Attribute::Index::FrontColor: |
|
|
|
return {"gl_Color"s + GetSwizzle(element), Type::Float}; |
|
|
|
|