mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-12 20:00:36 +02:00
Updates Makefile.sources and fixes the following building error:
In file included from external/mesa/src/vulkan/util/vk_format.c:24:
In file included from external/mesa/src/vulkan/util/vk_format.h:28:
external/mesa/src/util/format/u_format.h:33:10: fatal error: 'pipe/p_format.h' file not found
#include "pipe/p_format.h"
^~~~~~~~~~~~~~~~~
1 error generated.
Fixes: 3a28281 ("util: Add a mapping from VkFormat to PIPE_FORMAT.")
Signed-off-by: Mauro Rossi <issor.oruam@gmail.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
36 lines
788 B
Text
36 lines
788 B
Text
|
|
VULKAN_WSI_FILES := \
|
|
wsi/wsi_common.c \
|
|
wsi/wsi_common.h \
|
|
wsi/wsi_common_private.h \
|
|
wsi/wsi_common_queue.h
|
|
|
|
VULKAN_WSI_WAYLAND_FILES := \
|
|
wsi/wsi_common_wayland.c \
|
|
wsi/wsi_common_wayland.h
|
|
|
|
VULKAN_WSI_WAYLAND_GENERATED_FILES := \
|
|
wsi/wayland-drm-protocol.c \
|
|
wsi/wayland-drm-client-protocol.h \
|
|
wsi/linux-dmabuf-unstable-v1-protocol.c \
|
|
wsi/linux-dmabuf-unstable-v1-client-protocol.h
|
|
|
|
VULKAN_WSI_X11_FILES := \
|
|
wsi/wsi_common_x11.c \
|
|
wsi/wsi_common_x11.h
|
|
|
|
VULKAN_WSI_DISPLAY_FILES := \
|
|
wsi/wsi_common_display.c \
|
|
wsi/wsi_common_display.h
|
|
|
|
VULKAN_UTIL_FILES := \
|
|
util/vk_alloc.h \
|
|
util/vk_debug_report.c \
|
|
util/vk_debug_report.h \
|
|
util/vk_format.c \
|
|
util/vk_util.c \
|
|
util/vk_util.h
|
|
|
|
VULKAN_UTIL_GENERATED_FILES := \
|
|
util/vk_enum_to_str.c \
|
|
util/vk_enum_to_str.h
|