mirror of
https://git.suyu.dev/suyu/sirit.git
synced 2026-01-05 05:59:18 +01:00
Add EmitVertex and EndPrimitive
This commit is contained in:
parent
b4eeadfd9b
commit
3067893923
2 changed files with 14 additions and 0 deletions
|
|
@ -14,4 +14,12 @@ Id Module::OpUndef(Id result_type) {
|
|||
return AddCode(std::make_unique<Op>(spv::Op::OpUndef, bound++, result_type));
|
||||
}
|
||||
|
||||
Id Module::OpEmitVertex() {
|
||||
return AddCode(std::make_unique<Op>(spv::Op::OpEmitVertex));
|
||||
}
|
||||
|
||||
Id Module::OpEndPrimitive() {
|
||||
return AddCode(std::make_unique<Op>(spv::Op::OpEndPrimitive));
|
||||
}
|
||||
|
||||
} // namespace Sirit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue