shader: Implement VertexA stage
This commit is contained in:
parent
da936d6ad8
commit
b541f5e5e3
12 changed files with 180 additions and 3 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue