Fixed stremMask check. (#3682)

This commit is contained in:
Branimir Karadžić
2026-04-21 11:21:40 -07:00
committed by GitHub
parent e528e9d880
commit 50bf41b224
5 changed files with 6 additions and 6 deletions

View File

@@ -6231,7 +6231,7 @@ namespace bgfx { namespace d3d11
uint32_t numVertices = draw.m_numVertices;
uint8_t numStreams = 0;
if (UINT8_MAX != draw.m_streamMask)
if (UINT32_MAX != draw.m_streamMask)
{
for (BitMaskToIndexIteratorT it(draw.m_streamMask)
; !it.isDone()