mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
RPiOS 23.2.0-rc3 patches rebased onto 23.2.1 Signed-off-by: Matthias Reichl <hias@horus.com>
31 lines
1001 B
Diff
31 lines
1001 B
Diff
From 0d3fd30d67ffc0195b0783e30ab6afbbe403310a Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Alejandro=20Pi=C3=B1eiro?= <apinheiro@igalia.com>
|
|
Date: Wed, 28 Apr 2021 14:31:38 +0200
|
|
Subject: [PATCH 072/139] v3dv: recover non-conformant warning for not fully
|
|
supported hw
|
|
|
|
---
|
|
src/broadcom/vulkan/v3dv_device.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/src/broadcom/vulkan/v3dv_device.c b/src/broadcom/vulkan/v3dv_device.c
|
|
index d5de3517670..d29ffad3531 100644
|
|
--- a/src/broadcom/vulkan/v3dv_device.c
|
|
+++ b/src/broadcom/vulkan/v3dv_device.c
|
|
@@ -1212,6 +1212,12 @@ create_physical_device(struct v3dv_instance *instance,
|
|
|
|
list_addtail(&device->vk.link, &instance->vk.physical_devices.list);
|
|
|
|
+ if (device->devinfo.ver != 42) {
|
|
+ fprintf(stderr, "WARNING: v3dv support for hw version %i is neither "
|
|
+ "a complete nor a conformant Vulkan implementation. Testing "
|
|
+ "use only.\n", device->devinfo.ver);
|
|
+ }
|
|
+
|
|
return VK_SUCCESS;
|
|
|
|
fail:
|
|
--
|
|
2.39.2
|
|
|