diff --git a/framework/api_vulkan_sample.h b/framework/api_vulkan_sample.h index 940ae43..fdff4d0 100644 --- a/framework/api_vulkan_sample.h +++ b/framework/api_vulkan_sample.h @@ -409,8 +409,8 @@ class ApiVulkanSample : public vkb::VulkanSampleC public: bool prepared = false; - uint32_t width = 1280; - uint32_t height = 720; + uint32_t width = 480; + uint32_t height = 480; VkClearColorValue default_clear_color = {{0.002f, 0.002f, 0.002f, 1.0f}}; diff --git a/framework/platform/window.h b/framework/platform/window.h index 0f16e7b..44bb9ef 100644 --- a/framework/platform/window.h +++ b/framework/platform/window.h @@ -72,7 +72,7 @@ class Window Mode mode = Mode::Default; bool resizable = true; Vsync vsync = Vsync::Default; - Extent extent = {1280, 720}; + Extent extent = {480, 480}; }; /**