mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
Cleanup.
This commit is contained in:
parent
1bcfb68f4f
commit
737652be61
1 changed files with 14 additions and 13 deletions
|
@ -696,6 +696,7 @@ namespace bgfx { namespace d3d12
|
|||
D3D12_MESSAGE_CATEGORY catlist[] =
|
||||
{
|
||||
D3D12_MESSAGE_CATEGORY_STATE_CREATION,
|
||||
D3D12_MESSAGE_CATEGORY_EXECUTION,
|
||||
};
|
||||
filter.DenyList.NumCategories = BX_COUNTOF(catlist);
|
||||
filter.DenyList.pCategoryList = catlist;
|
||||
|
@ -4070,6 +4071,8 @@ data.NumQualityLevels = 0;
|
|||
}
|
||||
}
|
||||
|
||||
if (srvHandle[0].ptr != 0)
|
||||
{
|
||||
uint16_t samplerStateIdx = getSamplerState(samplerFlags);
|
||||
if (samplerStateIdx != currentSamplerStateIdx)
|
||||
{
|
||||
|
@ -4077,8 +4080,6 @@ data.NumQualityLevels = 0;
|
|||
m_commandList->SetGraphicsRootDescriptorTable(Rdt::Sampler, m_samplerAllocator.get(samplerStateIdx) );
|
||||
}
|
||||
|
||||
if (srvHandle[0].ptr != 0)
|
||||
{
|
||||
m_commandList->SetGraphicsRootDescriptorTable(Rdt::SRV, srvHandle[0]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue