VkGHL icon indicating copy to clipboard operation
VkGHL copied to clipboard

VK_PRESENT_MODE_BEGIN_RANGE_KHR is missing

Open axet opened this issue 4 years ago • 0 comments

vkghl.h:187:37: error: ‘VK_PRESENT_MODE_BEGIN_RANGE_KHR’ is not a member of ‘VkPresentModeKHR

with recent libvulcan-dev-1.2.162.0-1 it has no VK_PRESENT_MODE_BEGIN_RANGE_KHR.

vulkan_core.h

typedef enum VkPresentModeKHR {
    VK_PRESENT_MODE_IMMEDIATE_KHR = 0,
    VK_PRESENT_MODE_MAILBOX_KHR = 1,
    VK_PRESENT_MODE_FIFO_KHR = 2,
    VK_PRESENT_MODE_FIFO_RELAXED_KHR = 3,
    VK_PRESENT_MODE_SHARED_DEMAND_REFRESH_KHR = 1000111000,
    VK_PRESENT_MODE_SHARED_CONTINUOUS_REFRESH_KHR = 1000111001,
    VK_PRESENT_MODE_MAX_ENUM_KHR = 0x7FFFFFFF
} VkPresentModeKHR;

axet avatar Jan 27 '21 12:01 axet