From eb33ec116e652890d449cefb874502d0e2e2a5fe Mon Sep 17 00:00:00 2001 From: imterah Date: Thu, 26 Jun 2025 18:25:37 -0400 Subject: [PATCH] chore: Remove culling hacks as they don't work :( --- app/renderer/renderer.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/renderer/renderer.go b/app/renderer/renderer.go index cfc4739..b6fd79f 100644 --- a/app/renderer/renderer.go +++ b/app/renderer/renderer.go @@ -122,11 +122,6 @@ func EnterRenderLoop(config *libconfig.Config, displayMetadata *edidtools.Displa rl.CameraPerspective, ) - // Disable front and back face culling. It caused issues involving the entire virtual display dissappearing - // If this issue still happens I *am* going to cry - rl.DisableBackfaceCulling() - rl.DisableDepthTest() - horizontalSize := findOptimalHorizontalRes(float32(displayMetadata.MaxHeight), float32(displayMetadata.MaxWidth), verticalSize) coreMesh := rl.GenMeshPlane(horizontalSize, verticalSize, 1, 1)