mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-14 01:38:19 -05:00
shader: Implement BRX
This commit is contained in:
@ -26,6 +26,10 @@ void EmitReturn(EmitContext& ctx) {
|
||||
ctx.OpReturn();
|
||||
}
|
||||
|
||||
void EmitUnreachable(EmitContext& ctx) {
|
||||
ctx.OpUnreachable();
|
||||
}
|
||||
|
||||
void EmitDemoteToHelperInvocation(EmitContext& ctx, Id continue_label) {
|
||||
ctx.OpDemoteToHelperInvocationEXT();
|
||||
ctx.OpBranch(continue_label);
|
||||
|
Reference in New Issue
Block a user