diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2023-02-19 20:30:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-02-20 15:18:30 +0000 |
commit | df05a893b31b61563ed3f5ec90067fa5ccbfd111 (patch) | |
tree | bf44df09e5761bf05e57441ffe615839a258b7a0 /meta/recipes-graphics/vulkan/vulkan-samples | |
parent | 25f6d2bf18436755f8989984cac1fbc1d56c01c6 (diff) | |
download | poky-df05a893b31b61563ed3f5ec90067fa5ccbfd111.tar.gz |
vulkan-samples: update to latest revision
Drop patch as it's merged upstream.
(From OE-Core rev: fd1f4035fef30782f9e07a778fa63b78fab89102)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/vulkan/vulkan-samples')
-rw-r--r-- | meta/recipes-graphics/vulkan/vulkan-samples/0001-parser.h-Including-missing-cstdint.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-graphics/vulkan/vulkan-samples/0001-parser.h-Including-missing-cstdint.patch b/meta/recipes-graphics/vulkan/vulkan-samples/0001-parser.h-Including-missing-cstdint.patch deleted file mode 100644 index 3f6b37dce1..0000000000 --- a/meta/recipes-graphics/vulkan/vulkan-samples/0001-parser.h-Including-missing-cstdint.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | From 590bd5f81207bb55bd02b4a37f73a1f64dac452d Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Mon, 23 Jan 2023 13:20:58 -0800 | ||
4 | Subject: [PATCH] parser.h: Including missing <cstdint> | ||
5 | |||
6 | This is needed from gcc-13+ see [1] | ||
7 | |||
8 | Fixes | ||
9 | |||
10 | ../git/framework/platform/parser.h:282:43: error: 'uint32_t' does not name a type | ||
11 | 282 | *type = static_cast<uint32_t>(number); | ||
12 | | ^~~~~~~~ | ||
13 | ../git/framework/platform/parser.h:21:1: note: 'uint32_t' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'? | ||
14 | |||
15 | [1] https://www.gnu.org/software/gcc/gcc-13/porting_to.html | ||
16 | |||
17 | Upstream-Status: Submitted [https://github.com/KhronosGroup/Vulkan-Samples/pull/602] | ||
18 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
19 | --- | ||
20 | framework/platform/parser.h | 1 + | ||
21 | 1 file changed, 1 insertion(+) | ||
22 | |||
23 | diff --git a/framework/platform/parser.h b/framework/platform/parser.h | ||
24 | index 215f3d80..a5bd1344 100644 | ||
25 | --- a/framework/platform/parser.h | ||
26 | +++ b/framework/platform/parser.h | ||
27 | @@ -18,6 +18,7 @@ | ||
28 | #pragma once | ||
29 | |||
30 | #include <cassert> | ||
31 | +#include <cstdint> | ||
32 | #include <string> | ||
33 | #include <typeindex> | ||
34 | #include <vector> | ||
35 | -- | ||
36 | 2.39.1 | ||
37 | |||