Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
pappeste
2021-06-28 14:40:29 -07:00
committed by Esteban Papp
parent 3172a82937
commit dcab2751de
22 changed files with 27 additions and 27 deletions
@@ -103,7 +103,7 @@ namespace AZ
AZ::TypeId GetStorageDataTypeId() const;
//! Returns the value of the enum from its name. If this property is not an enum or the name is undefined, InvalidEnumValue is returned.
static constexpr uint32_t InvalidEnumValue = -1;
static constexpr uint32_t InvalidEnumValue = std::numeric_limits<uint32_t>::max();
uint32_t GetEnumValue(const AZ::Name& enumName) const;
//! Returns the unique name ID of this property
@@ -75,7 +75,7 @@ namespace AZ
private:
static constexpr uint32_t UnspecifiedIndex = -1;
static constexpr uint32_t UnspecifiedIndex = std::numeric_limits<uint32_t>::max();
//! Returns the node associated with the provided index.
const ShaderVariantTreeNode& GetNode(uint32_t index) const;