Add OpDemoteToHelperInvocation, OpTerminateInvocation

This commit is contained in:
Liam
2022-11-23 17:17:31 -05:00
committed by Rodrigo Locatti
parent 661499f6ec
commit d7ad93a888
3 changed files with 17 additions and 4 deletions

View File

@@ -309,12 +309,16 @@ public:
/// Return a value from a function. /// Return a value from a function.
Id OpReturnValue(Id value); Id OpReturnValue(Id value);
/// Fragment-shader discard. /// Deprecated fragment-shader discard.
void OpKill(); void OpKill();
/// Demote fragment shader invocation to a helper invocation /// Demote fragment shader invocation to a helper invocation
void OpDemoteToHelperInvocation();
void OpDemoteToHelperInvocationEXT(); void OpDemoteToHelperInvocationEXT();
/// Fragment-shader discard.
void OpTerminateInvocation();
// Debug // Debug
/// Assign a name string to a reference. /// Assign a name string to a reference.

View File

@@ -92,9 +92,18 @@ void Module::OpKill() {
*code << spv::Op::OpKill << EndOp{}; *code << spv::Op::OpKill << EndOp{};
} }
void Module::OpDemoteToHelperInvocationEXT() { void Module::OpDemoteToHelperInvocation() {
code->Reserve(1); code->Reserve(1);
*code << spv::Op::OpDemoteToHelperInvocationEXT << EndOp{}; *code << spv::Op::OpDemoteToHelperInvocation << EndOp{};
}
void Module::OpDemoteToHelperInvocationEXT() {
OpDemoteToHelperInvocation();
}
void Module::OpTerminateInvocation() {
code->Reserve(1);
*code << spv::Op::OpTerminateInvocation << EndOp{};
} }
} // namespace Sirit } // namespace Sirit