Skip to content

Commit 438ae5c

Browse files
committed
[dxso] Fix getting sampler type of vertex textures
Fixes: c7afe0d
1 parent 7e237b3 commit 438ae5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dxso/dxso_compiler.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3050,7 +3050,7 @@ void DxsoCompiler::emitControlFlowGenericLoop(
30503050

30513051
auto SampleType = [&](DxsoSamplerType samplerType) {
30523052
uint32_t typeId = m_module.defIntType(32, 0);
3053-
uint32_t offset = m_module.consti32(m_programInfo.type() == DxsoProgramTypes::VertexShader ? samplerIdx + 17 : samplerIdx);
3053+
uint32_t offset = m_module.consti32(m_programInfo.type() == DxsoProgramTypes::VertexShader ? samplerIdx + caps::MaxTexturesPS : samplerIdx);
30543054
uint32_t bitCnt = m_module.consti32(1);
30553055

30563056
uint32_t isNull = m_module.opBitFieldUExtract(typeId, m_nullSpecConstant, offset, bitCnt);

0 commit comments

Comments
 (0)