View | Details | Raw Unified | Return to bug 279355 | Differences between
and this patch

Collapse All | Expand All

(-)b/games/veloren-weekly/Makefile (+3 lines)
Lines 61-66 post-patch: Link Here
61
# Respect PREFIX != /usr/local for system assets
61
# Respect PREFIX != /usr/local for system assets
62
	@${REINPLACE_CMD} -e 's,/usr/share,${DATADIR:H},' \
62
	@${REINPLACE_CMD} -e 's,/usr/share,${DATADIR:H},' \
63
		${WRKSRC}/common/assets/src/lib.rs
63
		${WRKSRC}/common/assets/src/lib.rs
64
	${PATCH} ${PATCH_ARGS} \
65
		-d ${WRKDIR}/wgpu-0.18-with-fixes-for-veloren-v1 < \
66
		${FILESDIR}/extra-patch-wgpu
64
67
65
do-install:
68
do-install:
66
# XXX [workspace.dependencies] breaks rebuild in subdirs
69
# XXX [workspace.dependencies] breaks rebuild in subdirs
(-)b/games/veloren-weekly/files/extra-patch-wgpu (+13 lines)
Added Link Here
1
--- wgpu/src/backend/direct.rs.orig	2024-01-17 19:16:17.000000000 -0500
2
+++ wgpu/src/backend/direct.rs	2024-02-08 20:33:55.286862000 -0500
3
@@ -2279,9 +2279,7 @@
4
             &size
5
         )) {
6
             Ok(()) => (),
7
-            Err(err) => {
8
-                self.handle_error_nolabel(&queue_data.error_sink, err, "Queue::write_texture")
9
-            }
10
+            Err(_err) => ()
11
         }
12
     }
13
 

Return to bug 279355