Skip to content
Snippets Groups Projects
Unverified Commit 53058060 authored by Mat M's avatar Mat M Committed by GitHub
Browse files

Merge pull request #3716 from bunnei/fix-another-impl-fallthrough

video_core: gl_shader_decompiler: Fix implicit fallthrough errors.
parents 89e512ca 03726fb7
No related branches found
No related tags found
No related merge requests found
...@@ -1145,6 +1145,7 @@ private: ...@@ -1145,6 +1145,7 @@ private:
return {"gl_FragCoord"s + GetSwizzle(element), Type::Float}; return {"gl_FragCoord"s + GetSwizzle(element), Type::Float};
default: default:
UNREACHABLE(); UNREACHABLE();
return {"0", Type::Int};
} }
case Attribute::Index::FrontColor: case Attribute::Index::FrontColor:
return {"gl_Color"s + GetSwizzle(element), Type::Float}; return {"gl_Color"s + GetSwizzle(element), Type::Float};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment