diff options
author | Emil Velikov <[email protected]> | 2018-03-13 11:29:52 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-03-16 13:47:52 +0000 |
commit | d091c9c4cf6f872d444d02d50e36aa65b49e95fa (patch) | |
tree | 75e1e024220e2085aa1d3646e950261e1f9a2b5c /src/vulkan | |
parent | 19ec81775636171af4386fe17fc301917c4e97f7 (diff) |
vulkan/wsi/x11: correct DRI3 version in comment
During development the version was bumped, yet the comment did not get
an update.
Fixes: c80c08e2260 ("vulkan/wsi/x11: Add support for DRI3 v1.2")
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Daniel Stone <[email protected]>
Diffstat (limited to 'src/vulkan')
-rw-r--r-- | src/vulkan/wsi/wsi_common_x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vulkan/wsi/wsi_common_x11.c b/src/vulkan/wsi/wsi_common_x11.c index e7a7da19285..0667aa1dbc9 100644 --- a/src/vulkan/wsi/wsi_common_x11.c +++ b/src/vulkan/wsi/wsi_common_x11.c @@ -1047,7 +1047,7 @@ x11_image_init(VkDevice device_h, struct x11_swapchain *chain, image->pixmap = xcb_generate_id(chain->conn); if (image->base.drm_modifier != DRM_FORMAT_MOD_INVALID) { - /* If the image has a modifier, we must have DRI3 v1.1. */ + /* If the image has a modifier, we must have DRI3 v1.2. */ assert(chain->has_dri3_modifiers); cookie = |