X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbackends%2Fvulkan%2Fdevice_backend.cpp;h=3be29c63c9524b04be53aedff3fe808222f4b334;hb=dd503e748c430d26b6adda57b59f04177e4105fa;hp=b5d3db70548701d314a0b1239b829af9c0fd8faf;hpb=99ca354f18119f82f1adeca100cd665a8f640317;p=libs%2Fgl.git diff --git a/source/backends/vulkan/device_backend.cpp b/source/backends/vulkan/device_backend.cpp index b5d3db70..3be29c63 100644 --- a/source/backends/vulkan/device_backend.cpp +++ b/source/backends/vulkan/device_backend.cpp @@ -1,8 +1,11 @@ +#include #include #include "device.h" #include "device_backend.h" #include "vulkan.h" +using namespace std; + namespace Msp { namespace GL { @@ -13,6 +16,7 @@ VulkanDevice::VulkanDevice(Graphics::Window &wnd, const Graphics::VulkanOptions functions(new VulkanFunctions(context)), allocator(*static_cast(this)), destroy_queue(*static_cast(this)), + synchronizer(*static_cast(this)), transfer_queue(*static_cast(this)), pipeline_cache(*static_cast(this)) { } @@ -24,8 +28,13 @@ VulkanDevice::~VulkanDevice() Graphics::VulkanOptions VulkanDevice::create_default_options() { Graphics::VulkanOptions opts; + opts.enable_geometry_shader = true; #ifdef DEBUG - opts.enable_validation = true; + const char *disable_ptr = getenv("MSPGL_DISABLE_VALIDATION"); + if(disable_ptr && *disable_ptr) + opts.enable_validation = !lexical_cast(string(disable_ptr)); + else + opts.enable_validation = true; opts.enable_debug_report = true; #endif return opts;