summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-09-01 19:08:55 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-09-01 19:08:55 +0000
commit00b766b68bc289617bdfccff699fd6d92592cb61 (patch)
tree75c469d53163f6c7e17eab342820e8ba14a87de9 /Graphics/GraphicsEngine
parentUpdated texture map/unmap intererface; implemented texture mapping in D3D12 (diff)
downloadDiligentCore-00b766b68bc289617bdfccff699fd6d92592cb61.tar.gz
DiligentCore-00b766b68bc289617bdfccff699fd6d92592cb61.zip
Fixed build error
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/include/TextureBase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngine/include/TextureBase.h b/Graphics/GraphicsEngine/include/TextureBase.h
index 949d8d98..3321a4df 100644
--- a/Graphics/GraphicsEngine/include/TextureBase.h
+++ b/Graphics/GraphicsEngine/include/TextureBase.h
@@ -504,7 +504,7 @@ void TextureBase<BaseInterface, TRenderDeviceImpl, TTextureViewImpl, TTexViewObj
const Box* pMapRegion,
MappedTextureSubresource& MappedData)
{
- ValidateMapTextureParams(m_Desc, MipLevel, ArraySlice, MapType, MapFlags, pMapRegion);
+ ValidateMapTextureParams(this->GetDesc(), MipLevel, ArraySlice, MapType, MapFlags, pMapRegion);
}
template<class BaseInterface, class TRenderDeviceImpl,class TTextureViewImpl, class TTexViewObjAllocator>