summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/vulkan/vulkan-samples/0001-framework-Include-stdint.h.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/vulkan/vulkan-samples/0001-framework-Include-stdint.h.patch')
-rw-r--r--meta/recipes-graphics/vulkan/vulkan-samples/0001-framework-Include-stdint.h.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/meta/recipes-graphics/vulkan/vulkan-samples/0001-framework-Include-stdint.h.patch b/meta/recipes-graphics/vulkan/vulkan-samples/0001-framework-Include-stdint.h.patch
deleted file mode 100644
index b30b0e0017..0000000000
--- a/meta/recipes-graphics/vulkan/vulkan-samples/0001-framework-Include-stdint.h.patch
+++ /dev/null
@@ -1,26 +0,0 @@
1From 9a187d2f54d3683636b951a10c165d949b3a1d18 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sun, 23 Mar 2025 20:09:35 -0700
4Subject: [PATCH] framework: Include stdint.h
5
6Needed for uint32_t used in this header
7GCC 15 gets upset about it.
8
9Upstream-Status: Submitted [https://github.com/KhronosGroup/Vulkan-Samples/pull/1314]
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 framework/platform/configuration.h | 1 +
13 1 file changed, 1 insertion(+)
14
15diff --git a/framework/platform/configuration.h b/framework/platform/configuration.h
16index f6a9cae..c15f76f 100644
17--- a/framework/platform/configuration.h
18+++ b/framework/platform/configuration.h
19@@ -18,6 +18,7 @@
20 #pragma once
21
22 #include <algorithm>
23+#include <cstdint>
24 #include <map>
25 #include <memory>
26 #include <string>