mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
vulkan/wsi: Add drm_modifier member to wsi_image
Not yet used anywhere. Signed-off-by: Daniel Stone <daniels@collabora.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
61c3feb38d
commit
55b27e1e5f
4 changed files with 6 additions and 1 deletions
|
|
@ -36,6 +36,7 @@ libvulkan_util_la_SOURCES = $(VULKAN_UTIL_SOURCES)
|
|||
AM_CPPFLAGS = \
|
||||
$(DEFINES) \
|
||||
-I$(top_srcdir)/include \
|
||||
-I$(top_srcdir)/include/drm-uapi \
|
||||
-I$(top_srcdir)/src \
|
||||
-I$(top_srcdir)/src/vulkan/util \
|
||||
-I$(top_srcdir)/src/gallium/auxiliary \
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ endif
|
|||
libvulkan_wsi = static_library(
|
||||
'vulkan_wsi',
|
||||
files_vulkan_wsi,
|
||||
include_directories : [inc_common, inc_vulkan_util],
|
||||
include_directories : [inc_common, inc_vulkan_util, inc_drm_uapi],
|
||||
dependencies : [vulkan_wsi_deps, dep_libdrm],
|
||||
c_args : [c_vis_args, vulkan_wsi_args],
|
||||
build_by_default : false,
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@
|
|||
*/
|
||||
|
||||
#include "wsi_common_private.h"
|
||||
#include "drm_fourcc.h"
|
||||
#include "util/macros.h"
|
||||
#include "vk_util.h"
|
||||
|
||||
|
|
@ -291,6 +292,7 @@ wsi_create_native_image(const struct wsi_swapchain *chain,
|
|||
if (result != VK_SUCCESS)
|
||||
goto fail;
|
||||
|
||||
image->drm_modifier = DRM_FORMAT_MOD_INVALID;
|
||||
image->num_planes = 1;
|
||||
image->sizes[0] = reqs.size;
|
||||
image->row_pitches[0] = image_layout.rowPitch;
|
||||
|
|
@ -494,6 +496,7 @@ wsi_create_prime_image(const struct wsi_swapchain *chain,
|
|||
if (result != VK_SUCCESS)
|
||||
goto fail;
|
||||
|
||||
image->drm_modifier = DRM_FORMAT_MOD_LINEAR;
|
||||
image->num_planes = 1;
|
||||
image->sizes[0] = linear_size;
|
||||
image->row_pitches[0] = linear_stride;
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ struct wsi_image {
|
|||
VkCommandBuffer *blit_cmd_buffers;
|
||||
} prime;
|
||||
|
||||
uint64_t drm_modifier;
|
||||
int num_planes;
|
||||
uint32_t sizes[4];
|
||||
uint32_t offsets[4];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue