Skip to content
This repository has been archived by the owner on Jan 21, 2025. It is now read-only.

Commit

Permalink
[dxso] Correctly mark output slots as used
Browse files Browse the repository at this point in the history
Pretty silly oversight on my behalf.
  • Loading branch information
misyltoad committed Dec 15, 2019
1 parent 535994f commit c18e0bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dxso/dxso_compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3182,7 +3182,7 @@ void DxsoCompiler::emitControlFlowGenericLoop(

m_module.setDebugName(outputPtr, name.c_str());

m_interfaceSlots.outputSlots |= slot;
m_interfaceSlots.outputSlots |= 1u << slot;
m_entryPointInterfaces.push_back(outputPtr);
};

Expand Down

0 comments on commit c18e0bd

Please sign in to comment.