diff options
author | Parth Gajjar <parth.gajjar@amd.com> | 2025-01-02 02:08:36 -0800 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2025-03-30 14:16:06 -0600 |
commit | 8edc577e00873055a06246780289b6edabfa2ff4 (patch) | |
tree | f6eb24771d2b6efca26559d6c09302f6fcaec241 | |
parent | f3b50d2e313479accb7a131fbf24924c4e19d1cf (diff) | |
download | meta-xilinx-8edc577e00873055a06246780289b6edabfa2ff4.tar.gz |
mali400: Updated default EGLconfig id for rgb565
RGB565 is default EGL config. So need to update config id
to corresponding eglconfig entry.
Signed-off-by: Parth Gajjar <parth.gajjar@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r-- | meta-xilinx-mali400/recipes-benchmarks/glmark2/files/0001-Make-RGB565-as-default-EGLconfig.patch | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-xilinx-mali400/recipes-benchmarks/glmark2/files/0001-Make-RGB565-as-default-EGLconfig.patch b/meta-xilinx-mali400/recipes-benchmarks/glmark2/files/0001-Make-RGB565-as-default-EGLconfig.patch index aeedfd58..6ebac6fe 100644 --- a/meta-xilinx-mali400/recipes-benchmarks/glmark2/files/0001-Make-RGB565-as-default-EGLconfig.patch +++ b/meta-xilinx-mali400/recipes-benchmarks/glmark2/files/0001-Make-RGB565-as-default-EGLconfig.patch | |||
@@ -12,6 +12,7 @@ Signed-off-by: Madhurkiran Harikrishnan <madhurkiran.harikrishnan@xilinx.com> | |||
12 | Reviewed-by: Hyun Kwon <hyun.kwon@xilinx.com> | 12 | Reviewed-by: Hyun Kwon <hyun.kwon@xilinx.com> |
13 | Upstream-Status: Inappropriate [Xilinx specific] | 13 | Upstream-Status: Inappropriate [Xilinx specific] |
14 | Signed-off-by: Mark Hatle <mark.hatle@amd.com> | 14 | Signed-off-by: Mark Hatle <mark.hatle@amd.com> |
15 | Signed-off-by: Parth Gajjar <parth.gajjar@amd.com> | ||
15 | --- | 16 | --- |
16 | src/gl-visual-config.h | 2 +- | 17 | src/gl-visual-config.h | 2 +- |
17 | 1 file changed, 1 insertion(+), 1 deletion(-) | 18 | 1 file changed, 1 insertion(+), 1 deletion(-) |
@@ -25,7 +26,7 @@ Index: git/src/gl-visual-config.h | |||
25 | public: | 26 | public: |
26 | GLVisualConfig(): | 27 | GLVisualConfig(): |
27 | - id(0), red(1), green(1), blue(1), alpha(1), depth(1), stencil(-1), buffer(1), samples(0) {} | 28 | - id(0), red(1), green(1), blue(1), alpha(1), depth(1), stencil(-1), buffer(1), samples(0) {} |
28 | + id(0), red(5), green(6), blue(5), alpha(0), depth(16), stencil(0), buffer(16), samples(0) {} | 29 | + id(5), red(5), green(6), blue(5), alpha(0), depth(16), stencil(0), buffer(16), samples(0) {} |
29 | GLVisualConfig(const std::string &s); | 30 | GLVisualConfig(const std::string &s); |
30 | 31 | ||
31 | /** | 32 | /** |