Skip to content

Commit

Permalink
qvk: remove swapchain colour requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
hanatos committed Jul 4, 2024
1 parent 54456d8 commit f2aa97e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qvk/qvk.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ const char *vk_requested_layers[] = {

const char *vk_requested_instance_extensions[] = {
// colour management:
VK_EXT_SWAPCHAIN_COLOR_SPACE_EXTENSION_NAME,
// VK_EXT_SWAPCHAIN_COLOR_SPACE_EXTENSION_NAME,
// debugging:
VK_EXT_DEBUG_UTILS_EXTENSION_NAME,
VK_EXT_DEBUG_REPORT_EXTENSION_NAME,
};

static const VkApplicationInfo vk_app_info = {
.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO,
.pApplicationName = "darktable ng",
.pApplicationName = "vkdt",
.applicationVersion = VK_MAKE_VERSION(1, 0, 0),
.pEngineName = "vkdt",
.engineVersion = VK_MAKE_VERSION(1, 0, 0),
Expand Down

0 comments on commit f2aa97e

Please sign in to comment.