Atom
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user