summaryrefslogtreecommitdiffstats
path: root/Common/src
diff options
context:
space:
mode:
authorazhirnov <zh1dron@gmail.com>2020-10-08 18:45:01 +0000
committerazhirnov <zh1dron@gmail.com>2020-10-08 18:46:35 +0000
commit2b396d236ab33dfe9c0defbe401d354ed3fb34f9 (patch)
tree575243bb9aa6215725a8b16a7747c103c1eda852 /Common/src
parentUpdated PipelineState[D3D11,D3D12,Vk]Impl to allocate single chunk of memory ... (diff)
downloadDiligentCore-2b396d236ab33dfe9c0defbe401d354ed3fb34f9.tar.gz
DiligentCore-2b396d236ab33dfe9c0defbe401d354ed3fb34f9.zip
removed strong references to shaders in PSO
Diffstat (limited to 'Common/src')
-rw-r--r--Common/src/DefaultRawMemoryAllocator.cpp1
-rw-r--r--Common/src/FixedBlockMemoryAllocator.cpp2
2 files changed, 3 insertions, 0 deletions
diff --git a/Common/src/DefaultRawMemoryAllocator.cpp b/Common/src/DefaultRawMemoryAllocator.cpp
index 38840360..f1ecabe8 100644
--- a/Common/src/DefaultRawMemoryAllocator.cpp
+++ b/Common/src/DefaultRawMemoryAllocator.cpp
@@ -37,6 +37,7 @@ DefaultRawMemoryAllocator::DefaultRawMemoryAllocator()
void* DefaultRawMemoryAllocator::Allocate(size_t Size, const Char* dbgDescription, const char* dbgFileName, const Int32 dbgLineNumber)
{
+ VERIFY_EXPR(Size > 0);
return new Uint8[Size];
}
diff --git a/Common/src/FixedBlockMemoryAllocator.cpp b/Common/src/FixedBlockMemoryAllocator.cpp
index 2d2c993b..e4dc53d3 100644
--- a/Common/src/FixedBlockMemoryAllocator.cpp
+++ b/Common/src/FixedBlockMemoryAllocator.cpp
@@ -74,6 +74,8 @@ void FixedBlockMemoryAllocator::CreateNewPage()
void* FixedBlockMemoryAllocator::Allocate(size_t Size, const Char* dbgDescription, const char* dbgFileName, const Int32 dbgLineNumber)
{
+ VERIFY_EXPR(Size > 0);
+
Size = AdjustBlockSize(Size);
VERIFY(m_BlockSize == Size, "Requested size (", Size, ") does not match the block size (", m_BlockSize, ")");