mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 19:47:17 +00:00
vulkan-cts: upgrade 1.4.3.3 -> 1.4.4.0
Upgrade Vulkan CTS in order to pick up tests for new extension and also some fixes or old tests. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
committed by
Khem Raj
parent
d804fb389f
commit
b104a2ce39
@@ -0,0 +1,33 @@
|
|||||||
|
From 16d72de3280410b185f33e489727761096a2e6e4 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
|
||||||
|
Date: Wed, 22 Oct 2025 14:34:22 +0300
|
||||||
|
Subject: [PATCH] decode: fix build on ARMv7 targets
|
||||||
|
|
||||||
|
Building NEON code on ARMv7 fails with the following error:
|
||||||
|
|
||||||
|
...../src/NextStartCodeNEON.cpp:39:57: error: cannot convert 'uint8x8_t' to 'uint64x1_t'
|
||||||
|
|
||||||
|
Add missing vreinterpret call in order to fix that error.
|
||||||
|
|
||||||
|
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
|
||||||
|
Upstream-Status: Submitted [https://github.com/KhronosGroup/Vulkan-Video-Samples/pull/109]
|
||||||
|
---
|
||||||
|
vk_video_decoder/libs/NvVideoParser/src/NextStartCodeNEON.cpp | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/vk_video_decoder/libs/NvVideoParser/src/NextStartCodeNEON.cpp b/vk_video_decoder/libs/NvVideoParser/src/NextStartCodeNEON.cpp
|
||||||
|
index f1a3381d7122..2c695a924ebd 100644
|
||||||
|
--- a/vk_video_decoder/libs/NvVideoParser/src/NextStartCodeNEON.cpp
|
||||||
|
+++ b/vk_video_decoder/libs/NvVideoParser/src/NextStartCodeNEON.cpp
|
||||||
|
@@ -36,7 +36,7 @@ size_t VulkanVideoDecoder::next_start_code<SIMD_ISA::NEON>(const uint8_t *pdatai
|
||||||
|
#if defined (__aarch64__) || defined(_M_ARM64)
|
||||||
|
uint64_t resmask = vmaxvq_u8(vmask);
|
||||||
|
#else
|
||||||
|
- uint64_t resmask = vget_lane_u64(vmax_u8(vget_low_u8(vmask), vget_high_u8(vmask)), 0);
|
||||||
|
+ uint64_t resmask = vget_lane_u64(vreinterpret_u64_u8(vmax_u8(vget_low_u8(vmask), vget_high_u8(vmask))), 0);
|
||||||
|
#endif
|
||||||
|
if (resmask)
|
||||||
|
{
|
||||||
|
--
|
||||||
|
2.51.0
|
||||||
|
|
||||||
@@ -6,20 +6,19 @@
|
|||||||
RECIPE_UPGRADE_EXTRA_TASKS += "do_refresh_srcuri"
|
RECIPE_UPGRADE_EXTRA_TASKS += "do_refresh_srcuri"
|
||||||
|
|
||||||
python __anonymous() {
|
python __anonymous() {
|
||||||
if d.getVar("PV") != "1.4.3.3":
|
if d.getVar("PV") != "1.4.4.0":
|
||||||
bb.warn("-sources.inc out of date, run refresh_srcuri task")
|
bb.warn("-sources.inc out of date, run refresh_srcuri task")
|
||||||
}
|
}
|
||||||
|
|
||||||
SRC_URI += " \
|
SRC_URI += " \
|
||||||
https://raw.githubusercontent.com/baldurk/renderdoc/v1.1/renderdoc/api/app/renderdoc_app.h;subdir=${BB_GIT_DEFAULT_DESTSUFFIX}/external/renderdoc/src;sha256sum=e7b5f0aa5b1b0eadc63a1c624c0ca7f5af133aa857d6a4271b0ef3d0bdb6868e \
|
https://raw.githubusercontent.com/baldurk/renderdoc/v1.1/renderdoc/api/app/renderdoc_app.h;subdir=${BB_GIT_DEFAULT_DESTSUFFIX}/external/renderdoc/src;sha256sum=e7b5f0aa5b1b0eadc63a1c624c0ca7f5af133aa857d6a4271b0ef3d0bdb6868e \
|
||||||
git://github.com/KhronosGroup/SPIRV-Tools.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/spirv-tools/src;rev=f06e0f3d2e5acfe4b14e714e4103dd1ccdb237e5 \
|
git://github.com/KhronosGroup/SPIRV-Tools.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/spirv-tools/src;rev=b8b90dba56eb8c75050a712188d662fd51c953df \
|
||||||
git://github.com/KhronosGroup/glslang.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/glslang/src;rev=963588074b26326ff0426c8953c1235213309bdb \
|
git://github.com/KhronosGroup/glslang.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/glslang/src;rev=38f6708b6b6f213010c51ffa8f577a7751e12ce7 \
|
||||||
git://github.com/KhronosGroup/SPIRV-Headers.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/spirv-headers/src;rev=6d0784e9f1ab92c17eeea94821b2465c14a52be9 \
|
git://github.com/KhronosGroup/SPIRV-Headers.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/spirv-headers/src;rev=97e96f9e9defeb4bba3cfbd034dec516671dd7a3 \
|
||||||
git://github.com/KhronosGroup/Vulkan-Docs.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/vulkan-docs/src;rev=112aee75d162412a4623e7d22a3de52e0233cbf5 \
|
git://github.com/KhronosGroup/Vulkan-Docs.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/vulkan-docs/src;rev=9c6d565f72ba6929c239c3e20f90b6375acad3bd \
|
||||||
git://github.com/KhronosGroup/Vulkan-ValidationLayers.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/vulkan-validationlayers/src;rev=6ae58a2b17b2bcebdc5377995007391b85ffa10f \
|
git://github.com/KhronosGroup/Vulkan-ValidationLayers.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/vulkan-validationlayers/src;rev=68e4cdd8269c2af39aa16793c9089d1893eae972 \
|
||||||
git://github.com/google/amber.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/amber/src;rev=57ba1ca211b6f4890c013dcf42cb16069ae916dd \
|
git://github.com/google/amber.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/amber/src;rev=57ba1ca211b6f4890c013dcf42cb16069ae916dd \
|
||||||
git://github.com/open-source-parsers/jsoncpp.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/jsoncpp/src;rev=9059f5cad030ba11d37818847443a53918c327b1 \
|
git://github.com/open-source-parsers/jsoncpp.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/jsoncpp/src;rev=9059f5cad030ba11d37818847443a53918c327b1 \
|
||||||
git://github.com/Igalia/vk_video_samples.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/nvidia-video-samples/src;rev=45fe88b456c683120138f052ea81f0a958ff3ec4 \
|
git://github.com/KhronosGroup/Vulkan-Video-Samples.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/vulkan-video-samples/src;rev=56a40ba4199e5500b2a7540c15dc139fc4b19595 \
|
||||||
git://github.com/KhronosGroup/Vulkan-Video-Samples.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/vulkan-video-samples/src;rev=a22e0084e6f38a16dc0dcebb4c19a14651a6665b \
|
|
||||||
git://github.com/Igalia/video_generator.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/video_generator/src;rev=426300e12a5cc5d4676807039a1be237a2b68187 \
|
git://github.com/Igalia/video_generator.git;protocol=https;nobranch=1;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/external/video_generator/src;rev=426300e12a5cc5d4676807039a1be237a2b68187 \
|
||||||
"
|
"
|
||||||
|
|||||||
+3
-1
@@ -2,10 +2,12 @@ DESCRIPTION = "Vulkan CTS"
|
|||||||
|
|
||||||
require khronos-cts.inc
|
require khronos-cts.inc
|
||||||
|
|
||||||
SRCREV_vk-gl-cts = "f36967dd19034bdfe30e5cb21544079078c154d1"
|
SRCREV_vk-gl-cts = "03c0746a55b78eab63c664a11948b52419e1f309"
|
||||||
|
|
||||||
require vulkan-cts-sources.inc
|
require vulkan-cts-sources.inc
|
||||||
|
|
||||||
|
SRC_URI:append = " file://0001-decode-fix-build-on-ARMv7-targets.patch;patchdir=external/vulkan-video-samples/src"
|
||||||
|
|
||||||
# Workaround an optimization bug that breaks createMeshShaderMiscTestsEXT
|
# Workaround an optimization bug that breaks createMeshShaderMiscTestsEXT
|
||||||
OECMAKE_CXX_FLAGS:remove:toolchain-gcc = "-O2"
|
OECMAKE_CXX_FLAGS:remove:toolchain-gcc = "-O2"
|
||||||
|
|
||||||
Reference in New Issue
Block a user