mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 10:35:43 -05:00
Cleanup.
This commit is contained in:
parent
493ed72e45
commit
6482c8901f
3 changed files with 12 additions and 0 deletions
|
@ -3529,6 +3529,10 @@ BX_PRAGMA_DIAGNOSTIC_POP();
|
|||
m_constantBuffer->writeUniformHandle( (UniformType::Enum)(type|fragmentBit), regIndex, info->m_handle, regCount);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
kind = "sampler";
|
||||
}
|
||||
|
||||
BX_TRACE("\t%s: %s (%s), num %2d, r.index %3d, r.count %2d"
|
||||
, kind
|
||||
|
|
|
@ -3523,6 +3523,10 @@ data.NumQualityLevels = 0;
|
|||
m_constantBuffer->writeUniformHandle( (UniformType::Enum)(type|fragmentBit), regIndex, info->m_handle, regCount);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
kind = "sampler";
|
||||
}
|
||||
|
||||
BX_TRACE("\t%s: %s (%s), num %2d, r.index %3d, r.count %2d"
|
||||
, kind
|
||||
|
|
|
@ -2230,6 +2230,10 @@ namespace bgfx { namespace d3d9
|
|||
m_constantBuffer->writeUniformHandle( (UniformType::Enum)(type|fragmentBit), regIndex, info->m_handle, regCount);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
kind = "sampler";
|
||||
}
|
||||
|
||||
BX_TRACE("\t%s: %s (%s), num %2d, r.index %3d, r.count %2d"
|
||||
, kind
|
||||
|
|
Loading…
Reference in a new issue