AtomLyIntegration

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
pappeste
2021-06-28 14:40:46 -07:00
committed by Esteban Papp
parent dcab2751de
commit d5ed0cc385
3 changed files with 3 additions and 3 deletions
@@ -39,7 +39,7 @@ namespace AZ
void Reset()
{
m_slotUsage = 0;
m_currentCharacter = ~0;
m_currentCharacter = std::numeric_limits<uint32_t>::max();
m_horizontalAdvance = 0;
m_characterWidth = 0;
m_characterHeight = 0;
@@ -46,7 +46,7 @@ namespace AZ
void Reset()
{
m_usage = 0;
m_currentCharacter = ~0;
m_currentCharacter = std::numeric_limits<uint32_t>::max();
m_characterWidth = 0;
m_characterHeight = 0;
@@ -19,7 +19,7 @@ namespace AZ
{
namespace Render
{
static const size_t DefaultMaterialSlotIndex = -1;
static const size_t DefaultMaterialSlotIndex = std::numeric_limits<size_t>::max();
//! Details for a single editable material assignment
struct EditorMaterialComponentSlot final