From 28678bd14e84addbe9944a69073c050ff8e34b9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Beaufort?= Date: Mon, 18 Nov 2024 17:55:42 +0100 Subject: [PATCH] Fix perf display container background (#477) --- sample/computeBoids/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample/computeBoids/main.ts b/sample/computeBoids/main.ts index 616731b9..048d18fc 100644 --- a/sample/computeBoids/main.ts +++ b/sample/computeBoids/main.ts @@ -15,7 +15,7 @@ quitIfWebGPUNotAvailable(adapter, device); const perfDisplayContainer = document.createElement('div'); perfDisplayContainer.style.color = 'white'; -perfDisplayContainer.style.backdropFilter = 'blur(10px)'; +perfDisplayContainer.style.background = 'black'; perfDisplayContainer.style.position = 'absolute'; perfDisplayContainer.style.bottom = '10px'; perfDisplayContainer.style.left = '10px';