mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-31 05:52:11 +01:00
[spirv] Add support for OpDemoteToHelperInvocationEXT
This commit is contained in:
parent
7b34b8515b
commit
e901e1269d
@ -3265,6 +3265,11 @@ namespace dxvk {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void SpirvModule::opDemoteToHelperInvocation() {
|
||||||
|
m_code.putIns (spv::OpDemoteToHelperInvocationEXT, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void SpirvModule::opEmitVertex(
|
void SpirvModule::opEmitVertex(
|
||||||
uint32_t streamId) {
|
uint32_t streamId) {
|
||||||
if (streamId == 0) {
|
if (streamId == 0) {
|
||||||
|
@ -1130,6 +1130,8 @@ namespace dxvk {
|
|||||||
void opReturn();
|
void opReturn();
|
||||||
|
|
||||||
void opKill();
|
void opKill();
|
||||||
|
|
||||||
|
void opDemoteToHelperInvocation();
|
||||||
|
|
||||||
void opEmitVertex(
|
void opEmitVertex(
|
||||||
uint32_t streamId);
|
uint32_t streamId);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user