diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2017-12-28 06:07:38 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2017-12-28 06:07:38 +0000 |
| commit | cb36c7de7c913dcee790b318484b1c12c8936825 (patch) | |
| tree | 80df549f36fa0ecb083d70e3834680b19ba27af2 /TextureLoader/src/DDSLoader.cpp | |
| parent | Added HLSL2GLSLConverter project (diff) | |
| download | DiligentTools-cb36c7de7c913dcee790b318484b1c12c8936825.tar.gz DiligentTools-cb36c7de7c913dcee790b318484b1c12c8936825.zip | |
Updated debug and error macros
Diffstat (limited to 'TextureLoader/src/DDSLoader.cpp')
| -rw-r--r-- | TextureLoader/src/DDSLoader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TextureLoader/src/DDSLoader.cpp b/TextureLoader/src/DDSLoader.cpp index 34a625a..12feffb 100644 --- a/TextureLoader/src/DDSLoader.cpp +++ b/TextureLoader/src/DDSLoader.cpp @@ -943,7 +943,7 @@ static void CreateTexture( { if (!pDevice || !initData) { - LOG_ERROR_AND_THROW("Invalid arguments") + LOG_ERROR_AND_THROW("Invalid arguments"); } @@ -1433,7 +1433,7 @@ void CreateDDSTextureFromMemoryEx( { if (texture) { - VERIFY( *texture == nullptr, "Overwriting reference to an existing object is unsafe") + VERIFY( *texture == nullptr, "Overwriting reference to an existing object is unsafe"); *texture = nullptr; } //if (textureView) |
