mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-14 01:38:19 -05:00
shader: Implement VertexA stage
This commit is contained in:
@ -26,6 +26,10 @@ void EmitReturn(EmitContext& ctx) {
|
||||
ctx.OpReturn();
|
||||
}
|
||||
|
||||
void EmitJoin(EmitContext&) {
|
||||
throw NotImplementedException("Join shouldn't be emitted");
|
||||
}
|
||||
|
||||
void EmitUnreachable(EmitContext& ctx) {
|
||||
ctx.OpUnreachable();
|
||||
}
|
||||
|
Reference in New Issue
Block a user