mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 04:10:06 +00:00
Remove extra semicolons, fixes build with -Wextra-semi
This commit is contained in:
parent
8296345455
commit
f741604e04
@ -884,7 +884,7 @@ Use it as a unique identifier to virtual allocation within the single block.
|
|||||||
|
|
||||||
Use value `VK_NULL_HANDLE` to represent a null/invalid allocation.
|
Use value `VK_NULL_HANDLE` to represent a null/invalid allocation.
|
||||||
*/
|
*/
|
||||||
VK_DEFINE_NON_DISPATCHABLE_HANDLE(VmaVirtualAllocation);
|
VK_DEFINE_NON_DISPATCHABLE_HANDLE(VmaVirtualAllocation)
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
@ -3126,7 +3126,7 @@ enum class VmaAllocationRequestType
|
|||||||
|
|
||||||
#ifndef _VMA_FORWARD_DECLARATIONS
|
#ifndef _VMA_FORWARD_DECLARATIONS
|
||||||
// Opaque handle used by allocation algorithms to identify single allocation in any conforming way.
|
// Opaque handle used by allocation algorithms to identify single allocation in any conforming way.
|
||||||
VK_DEFINE_NON_DISPATCHABLE_HANDLE(VmaAllocHandle);
|
VK_DEFINE_NON_DISPATCHABLE_HANDLE(VmaAllocHandle)
|
||||||
|
|
||||||
struct VmaMutexLock;
|
struct VmaMutexLock;
|
||||||
struct VmaMutexLockRead;
|
struct VmaMutexLockRead;
|
||||||
@ -6781,7 +6781,7 @@ public:
|
|||||||
VkDeviceSize GetSumFreeSize() const override { return m_SumFreeSize; }
|
VkDeviceSize GetSumFreeSize() const override { return m_SumFreeSize; }
|
||||||
bool IsEmpty() const override { return (m_Suballocations.size() == 1) && (m_FreeCount == 1); }
|
bool IsEmpty() const override { return (m_Suballocations.size() == 1) && (m_FreeCount == 1); }
|
||||||
void Free(VmaAllocHandle allocHandle) override { FreeSuballocation(FindAtOffset((VkDeviceSize)allocHandle - 1)); }
|
void Free(VmaAllocHandle allocHandle) override { FreeSuballocation(FindAtOffset((VkDeviceSize)allocHandle - 1)); }
|
||||||
VkDeviceSize GetAllocationOffset(VmaAllocHandle allocHandle) const override { return (VkDeviceSize)allocHandle - 1; };
|
VkDeviceSize GetAllocationOffset(VmaAllocHandle allocHandle) const override { return (VkDeviceSize)allocHandle - 1; }
|
||||||
|
|
||||||
void Init(VkDeviceSize size) override;
|
void Init(VkDeviceSize size) override;
|
||||||
bool Validate() const override;
|
bool Validate() const override;
|
||||||
@ -7618,7 +7618,7 @@ public:
|
|||||||
|
|
||||||
VkDeviceSize GetSumFreeSize() const override { return m_SumFreeSize; }
|
VkDeviceSize GetSumFreeSize() const override { return m_SumFreeSize; }
|
||||||
bool IsEmpty() const override { return GetAllocationCount() == 0; }
|
bool IsEmpty() const override { return GetAllocationCount() == 0; }
|
||||||
VkDeviceSize GetAllocationOffset(VmaAllocHandle allocHandle) const override { return (VkDeviceSize)allocHandle - 1; };
|
VkDeviceSize GetAllocationOffset(VmaAllocHandle allocHandle) const override { return (VkDeviceSize)allocHandle - 1; }
|
||||||
|
|
||||||
void Init(VkDeviceSize size) override;
|
void Init(VkDeviceSize size) override;
|
||||||
bool Validate() const override;
|
bool Validate() const override;
|
||||||
@ -9278,7 +9278,7 @@ public:
|
|||||||
VkDeviceSize GetSumFreeSize() const override { return m_SumFreeSize + GetUnusableSize(); }
|
VkDeviceSize GetSumFreeSize() const override { return m_SumFreeSize + GetUnusableSize(); }
|
||||||
bool IsEmpty() const override { return m_Root->type == Node::TYPE_FREE; }
|
bool IsEmpty() const override { return m_Root->type == Node::TYPE_FREE; }
|
||||||
VkResult CheckCorruption(const void* pBlockData) override { return VK_ERROR_FEATURE_NOT_PRESENT; }
|
VkResult CheckCorruption(const void* pBlockData) override { return VK_ERROR_FEATURE_NOT_PRESENT; }
|
||||||
VkDeviceSize GetAllocationOffset(VmaAllocHandle allocHandle) const override { return (VkDeviceSize)allocHandle - 1; };
|
VkDeviceSize GetAllocationOffset(VmaAllocHandle allocHandle) const override { return (VkDeviceSize)allocHandle - 1; }
|
||||||
void DebugLogAllAllocations() const override { DebugLogAllAllocationNode(m_Root, 0); }
|
void DebugLogAllAllocations() const override { DebugLogAllAllocationNode(m_Root, 0); }
|
||||||
|
|
||||||
void Init(VkDeviceSize size) override;
|
void Init(VkDeviceSize size) override;
|
||||||
@ -9977,7 +9977,7 @@ public:
|
|||||||
size_t GetFreeRegionsCount() const override { return m_BlocksFreeCount + 1; }
|
size_t GetFreeRegionsCount() const override { return m_BlocksFreeCount + 1; }
|
||||||
VkDeviceSize GetSumFreeSize() const override { return m_BlocksFreeSize + m_NullBlock->size; }
|
VkDeviceSize GetSumFreeSize() const override { return m_BlocksFreeSize + m_NullBlock->size; }
|
||||||
bool IsEmpty() const override { return m_NullBlock->offset == 0; }
|
bool IsEmpty() const override { return m_NullBlock->offset == 0; }
|
||||||
VkDeviceSize GetAllocationOffset(VmaAllocHandle allocHandle) const override { return ((Block*)allocHandle)->offset; };
|
VkDeviceSize GetAllocationOffset(VmaAllocHandle allocHandle) const override { return ((Block*)allocHandle)->offset; }
|
||||||
|
|
||||||
void Init(VkDeviceSize size) override;
|
void Init(VkDeviceSize size) override;
|
||||||
bool Validate() const override;
|
bool Validate() const override;
|
||||||
|
Loading…
Reference in New Issue
Block a user