diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-10-08 16:56:09 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-10-08 16:56:09 +0000 |
| commit | 1eaf490aa7ca184e648a61eac3afc77e7a01b2f5 (patch) | |
| tree | 3191d564dcf0ca01bea325ac22336a83232d2369 /Projects | |
| parent | Updated core (Replaced error messages wit warnings when accessing inactive sh... (diff) | |
| download | DiligentEngine-1eaf490aa7ca184e648a61eac3afc77e7a01b2f5.tar.gz DiligentEngine-1eaf490aa7ca184e648a61eac3afc77e7a01b2f5.zip | |
Fixed warnings related to RW buffers in TestShaderVarAccess; updated core
Diffstat (limited to 'Projects')
| -rw-r--r-- | Projects/Asteroids/src/asteroids_DE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/Asteroids/src/asteroids_DE.cpp b/Projects/Asteroids/src/asteroids_DE.cpp index c9ad7f0..8d1ada3 100644 --- a/Projects/Asteroids/src/asteroids_DE.cpp +++ b/Projects/Asteroids/src/asteroids_DE.cpp @@ -107,7 +107,7 @@ void Asteroids::InitDevice(HWND hWnd, DeviceType DevType) else if(DevType == DeviceType::Vulkan) { EngineVkAttribs Attribs; - Attribs.DynamicHeapSize = 32 << 20; + Attribs.DynamicHeapSize = 64 << 20; #if ENGINE_DLL if(!GetEngineFactoryVulkan) LoadGraphicsEngineVk(GetEngineFactoryVulkan); |
