aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/vk-gl-cts/files/0001-include-missing-cstdint.patch
blob: 47d9fc748a98e05bebf9bec344a9975ba6cd7ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
From 74cf53d89529902ecdef5b230421bc4d30fd089b Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Wed, 25 Jan 2023 15:36:14 -0800
Subject: [PATCH] include missing <cstdint>

gcc-13 exposed errors like below due to it removing indirect includes of
these headers in libstdc++ [1]

../git/external/amber/src/include/amber/shader_info.h:60:15: error: 'uint32_t' was not declared in this scope
   60 |   std::vector<uint32_t> shader_data;
      |               ^~~~~~~~

[1] https://www.gnu.org/software/gcc/gcc-13/porting_to.html

Upstream-Status: Submitted [https://github.com/google/amber/pull/1016]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 include/amber/recipe.h                  | 1 +
 include/amber/shader_info.h             | 1 +
 src/descriptor_set_and_binding_parser.h | 1 +
 3 files changed, 3 insertions(+)

diff --git a/include/amber/recipe.h b/include/amber/recipe.h
index 310a86a..1b83213 100644
--- a/include/amber/recipe.h
+++ b/include/amber/recipe.h
@@ -15,6 +15,7 @@
 #ifndef AMBER_RECIPE_H_
 #define AMBER_RECIPE_H_
 
+#include <cstdint>
 #include <string>
 #include <utility>
 #include <vector>
diff --git a/include/amber/shader_info.h b/include/amber/shader_info.h
index 6c9126a..b5ce751 100644
--- a/include/amber/shader_info.h
+++ b/include/amber/shader_info.h
@@ -15,6 +15,7 @@
 #ifndef AMBER_SHADER_INFO_H_
 #define AMBER_SHADER_INFO_H_
 
+#include <cstdint>
 #include <string>
 #include <vector>
 
diff --git a/src/descriptor_set_and_binding_parser.h b/src/descriptor_set_and_binding_parser.h
index 145aa42..4b0d774 100644
--- a/src/descriptor_set_and_binding_parser.h
+++ b/src/descriptor_set_and_binding_parser.h
@@ -15,6 +15,7 @@
 #ifndef SRC_DESCRIPTOR_SET_AND_BINDING_PARSER_H_
 #define SRC_DESCRIPTOR_SET_AND_BINDING_PARSER_H_
 
+#include <cstdint>
 #include <string>
 
 #include "amber/result.h"
-- 
2.39.1