From 34aaceaea90659af574831fff75bf79c826c8dfd Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Thu, 11 Apr 2019 09:01:35 -0700 Subject: Fixed Mac/iOS build error --- Graphics/GraphicsEngine/include/RenderDeviceBase.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Graphics/GraphicsEngine') diff --git a/Graphics/GraphicsEngine/include/RenderDeviceBase.h b/Graphics/GraphicsEngine/include/RenderDeviceBase.h index ee713c2e..3c337129 100644 --- a/Graphics/GraphicsEngine/include/RenderDeviceBase.h +++ b/Graphics/GraphicsEngine/include/RenderDeviceBase.h @@ -159,7 +159,8 @@ namespace std TexViewDesc.NumMipLevels, TexViewDesc.FirstArraySlice, TexViewDesc.NumArraySlices, - TexViewDesc.AccessFlags ); + static_cast(TexViewDesc.AccessFlags), + static_cast(TexViewDesc.Flags)); return Seed; } }; -- cgit v1.2.3