@@ -1,4 +1,4 @@
-From abccc17819ad208c0df3edbc8bbcd134e45864f9 Mon Sep 17 00:00:00 2001
+From 1b3d0741044c782731d22d7fed7e92ef409bb966 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex@linutronix.de>
Date: Fri, 23 Aug 2024 15:29:45 +0200
Subject: [PATCH] CMakeLists.txt: do not obtain wayland-scanner path from
@@ -17,7 +17,7 @@ Signed-off-by: Alexander Kanavin <alex@linutronix.de>
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 95f40ebfe..4c7da07b4 100644
+index 1a38c21f9..45c181e85 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -211,11 +211,7 @@ if(PIGLIT_USE_WAYLAND)
deleted file mode 100644
@@ -1,27 +0,0 @@
-From 8b98674fedc0ac31e768ccd16165bcb585e413e2 Mon Sep 17 00:00:00 2001
-From: Alexander Kanavin <alex@linutronix.de>
-Date: Thu, 2 Jul 2026 13:56:17 +0200
-Subject: [PATCH] pixel-local-tests: use unsigned int instead of uint
-
-uint is not a valid integer type in C, and this fails
-to compile under musl libc library.
-
-Upstream-Status: Submitted [https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/1170]
-Signed-off-by: Alexander Kanavin <alex@linutronix.de>
----
- tests/spec/ext_shader_pixel_local_storage/pixel-local-tests.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/tests/spec/ext_shader_pixel_local_storage/pixel-local-tests.c b/tests/spec/ext_shader_pixel_local_storage/pixel-local-tests.c
-index 4776193f2..1ac669d11 100644
---- a/tests/spec/ext_shader_pixel_local_storage/pixel-local-tests.c
-+++ b/tests/spec/ext_shader_pixel_local_storage/pixel-local-tests.c
-@@ -851,7 +851,7 @@ make_test_main_str(char *dst, struct pls_format_data *format_data,
- case GL_RGBA8UI:
- case GL_RG16UI:
- case GL_R32UI: {
-- uint expected[4];
-+ unsigned int expected[4];
- for (int comp = 0; comp < 4; comp++) {
- if (comp < format_data[member].num_components)
- expected[comp] = format_data[member].u[comp];
deleted file mode 100644
@@ -1,52 +0,0 @@
-From 3e7ec165c718234e1afcdf730bdf20942976e25c Mon Sep 17 00:00:00 2001
-From: Alexander Kanavin <alex@linutronix.de>
-Date: Fri, 22 Nov 2024 22:52:31 +0100
-Subject: [PATCH] tests/egl/spec: make egl_ext_surface_compression conditional
- to X11
-
-Otherwise, this error occurs:
-| In file included from /srv/storage/alex/yocto/build-64/workspace/sources/piglit/tests/egl/spec/egl_ext_surface_compression/create_surface.c:28:
-| /srv/storage/alex/yocto/build-64/workspace/sources/piglit/tests/egl/spec/egl_ext_surface_compression/../../egl-util.h:12:10: fatal error: X11/Xlib.h: No such file or directory
-| 12 | #include <X11/Xlib.h>
-| | ^~~~~~~~~~~~
-
-Upstream-Status: Submitted [https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/974]
-Co-developed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
-Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
-Signed-off-by: Alexander Kanavin <alex@linutronix.de>
----
- .../spec/egl_ext_surface_compression/CMakeLists.gles3.txt | 6 ++++--
- tests/egl/spec/egl_ext_surface_compression/create_surface.c | 1 -
- 2 files changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/tests/egl/spec/egl_ext_surface_compression/CMakeLists.gles3.txt b/tests/egl/spec/egl_ext_surface_compression/CMakeLists.gles3.txt
-index d9540bcfd..01a70164f 100644
---- a/tests/egl/spec/egl_ext_surface_compression/CMakeLists.gles3.txt
-+++ b/tests/egl/spec/egl_ext_surface_compression/CMakeLists.gles3.txt
-@@ -2,10 +2,12 @@ link_libraries(
- piglitutil_${piglit_target_api}
- )
-
--piglit_add_executable(egl_ext_surface_compression-create ../../egl-util.c
-+if (PIGLIT_HAS_WAYLAND)
-+piglit_add_executable(egl_ext_surface_compression-create
- ../../egl-wayland.c create_surface.c)
-+endif (PIGLIT_HAS_WAYLAND)
-
--piglit_add_executable(egl_ext_surface_compression-image ../../egl-util.c
-+piglit_add_executable(egl_ext_surface_compression-image
- image_storage.c)
-
- # vim: ft=cmake:
-diff --git a/tests/egl/spec/egl_ext_surface_compression/create_surface.c b/tests/egl/spec/egl_ext_surface_compression/create_surface.c
-index 71b043b54..09e87dee4 100644
---- a/tests/egl/spec/egl_ext_surface_compression/create_surface.c
-+++ b/tests/egl/spec/egl_ext_surface_compression/create_surface.c
-@@ -25,7 +25,6 @@
- #include "piglit-util.h"
- #include "piglit-util-egl.h"
- #include "piglit-util-gl.h"
--#include "../../egl-util.h"
- #include "../../egl-wayland.h"
-
- static enum piglit_result
@@ -1,4 +1,4 @@
-From 14e56a6336f36d1112964ce1ff0900ea4b37b483 Mon Sep 17 00:00:00 2001
+From f4de80be6ed99bbade73281c0cac99bac7f5e2eb Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex@linutronix.de>
Date: Thu, 22 May 2025 17:34:15 +0200
Subject: [PATCH] tests/no_error.py: modify _command and not command
@@ -1,4 +1,4 @@
-From 4444dd748b9324508e3168f64cf0b5adc31b5ebd Mon Sep 17 00:00:00 2001
+From e02e95a4c3103a8223dc89b6dbad3747e641f203 Mon Sep 17 00:00:00 2001
From: Pascal Bach <pascal.bach@siemens.com>
Date: Thu, 4 Oct 2018 14:43:17 +0200
Subject: [PATCH] cmake: use proper WAYLAND_INCLUDE_DIRS variable
@@ -1,4 +1,4 @@
-From f9bfdb8d32c2113c39c3be1bd6fd0934f693ab03 Mon Sep 17 00:00:00 2001
+From d10663b34ce8606b82bc153638a2f89bda32d4c0 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex.kanavin@gmail.com>
Date: Tue, 10 Nov 2020 17:13:50 +0000
Subject: [PATCH] tests/util/piglit-shader.c: do not hardcode build path into
@@ -10,13 +10,11 @@ SRC_URI = "git://gitlab.freedesktop.org/mesa/piglit.git;protocol=https;branch=ma
file://0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch \
file://0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch \
file://0001-CMakeLists.txt-do-not-obtain-wayland-scanner-path-fr.patch \
- file://0001-tests-egl-spec-make-egl_ext_surface_compression-cond.patch \
file://0001-tests-no_error.py-modify-_command-and-not-command.patch \
- file://0001-pixel-local-tests-use-unsigned-int-instead-of-uint.patch \
"
UPSTREAM_CHECK_COMMITS = "1"
-SRCREV = "56f237be32ed66820eb05ea3cb04cb8b957ccd8d"
+SRCREV = "4950babfd2cd4408e4bfd103d935c6e5cff53d20"
# (when PV goes above 1.0 remove the trailing r)
PV = "1.0+gitr"
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe(s) *piglit* to *4950babfd2cd4408e4bfd103d935c6e5cff53d20* has Succeeded. Next steps: - apply the patch: git am 0001-piglit-upgrade-to-latest-revision.patch - check the changes to upstream patches and summarize them in the commit message, - compile an image that contains the package - perform some basic sanity tests - amend the patch and sign it off: git commit -s --reset-author --amend - send it to the appropriate mailing list Alternatively, if you believe the recipe should not be upgraded at this time, you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that automatic upgrades would no longer be attempted. Please review the attached files for further information and build/update failures. Any problem please file a bug at https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler Regards, The Upgrade Helper -- >8 -- From f1480d149f8a3527c57067e7b853f76a4c0af326 Mon Sep 17 00:00:00 2001 From: Upgrade Helper <auh@yoctoproject.org> Date: Sat, 12 Sep 2026 06:23:29 +0000 Subject: [PATCH] piglit: upgrade to latest revision 4950babfd khr_texture_compression_astc: check for full NPOT support 81f9eac8c cl/api: initialize 'vec3' and 's_arg' in clSetKernelArg test fa4992cbe tests/egl_ext_surface_compression: make create test wayland-only 4d23b8c62 tests/egl_ext_surface_compression: stop using egl_utils ac0863746 egl_khr_surfaceless_context: request proper surface 007ef311b glsl: only check line interior for clipvertex/clipdistance tests 23a87ff87 gl-3.2-compat: fix loop for GS gl_ClipVertex test 04da05647 ext_yuv_target: add BlitFramebuffer YUV-restriction tests 136db767d arb_texture_barrier: skip blending-in-shader if too few color attachments 0b1ebdeb7 arb_transform_feedback2/draw-auto: test a non-zero buffer offset 6cd2a7617 vulkan: Rename cmat-uniform-ctor test to .vk_shader_test a84614b9c egl-terminate-then-unbind-context: allow config with any surface e7c693381 arb_shader_storage_buffer_object: convert atomicMin-swizzle 8e28eb429 cmake: serialize vulkan.xml after generating Vulkan tests 021d398d7 arb_texture_barrier: pass real vertex index bounds to glDrawRangeElements a8b696b24 opengl.py: register ext_yuv_target compiled tests 1521e9a5b tests/ext_frame_buffer_multisample: add message when tests is skipped due samples > max_samples 372590d39 gs-output-array-vec4-index-wr: Avoid exceeding GS output limits. 48597869c ext_external_objects: skip Vulkan timeline wait without GL timeline support c12502949 general: test rendering with a maximum-sized viewport a705d674d ext_image_dma_buf_import: add NV12 dual-fd vs single-fd sample test 6f4d25e3b glsl: enable PROGRAM_TWO_SIDE in glsl-packed-back-color 2216e438f arb_texture_view: use GL 3.0 functions 107825905 vulkan: Add test for divergent GS cut bits 06169021f ext_yuv_target: require GL_EXT_YUV_target for shader_runner tests 65f44948b fs-uint-to-float-of-extract-int*: Also support the alternative rounding. 2ba21df4b *-packHalf2x16.shader_test: Allow values to round to zero. 250cb0ce6 *-packHalf2x16.shader_test: Allow subnormals to flush to zero. 6cf48cf8e glx: fix visual test resource teardown order ab113c4f1 glx-multithread-clearbuffer: synchronize version check 7cd2aa213 gl-1.0: test fixed-function fog on a floor straddling the eye fee8b84aa arb_framebuffer_object: add test for oblong blits cae34b151 ext_yuv_target: add NV12 sampling and rendering execution tests 2f480240d Tests for GL_EXT_YUV_target and EGL_EXT_YUV_surface cbbb8f183 ext_texture_storage: test GLES2 NPOT level restrictions 110102701 ext_texture_storage: factor storage checks into a helper 7b1335738 ext_texture_storage: register formats test in the GPU profile e41f57633 s3tc-errors: test level-zero NPOT images on GLES2 bf5d1cbdc generated_tests: fix incompatible pointer types in global address space CL kernels fa1953546 glsl-1.50: test gl_PrimitiveID together with a user varying and no GS 9771f3e92 cl/api: adapt set-kernel-arg test for OpenCL 3.1 platform c65972281 cl/api: skip CL_QUEUE_SIZE query on host command-queues d690a61a0 cl/api: fix CL_DEVICE_MA [Changelog truncated as it exceeds 3000 characters; the full changelog can be found in an attachment to the AUH email] --- ...o-not-obtain-wayland-scanner-path-fr.patch | 4 +- ...sts-use-unsigned-int-instead-of-uint.patch | 27 ---------- ...ake-egl_ext_surface_compression-cond.patch | 52 ------------------- ...r.py-modify-_command-and-not-command.patch | 2 +- ...proper-WAYLAND_INCLUDE_DIRS-variable.patch | 2 +- ...t-shader.c-do-not-hardcode-build-pat.patch | 2 +- meta/recipes-graphics/piglit/piglit_git.bb | 4 +- 7 files changed, 6 insertions(+), 87 deletions(-) delete mode 100644 meta/recipes-graphics/piglit/piglit/0001-pixel-local-tests-use-unsigned-int-instead-of-uint.patch delete mode 100644 meta/recipes-graphics/piglit/piglit/0001-tests-egl-spec-make-egl_ext_surface_compression-cond.patch