// ── Apple GPU / Safari detection — start at MED quality on Retina ── (function detectAppleGPU(){ const ua = navigator.userAgent; const isSafari = /Safari/.test(ua) && !/Chrome/.test(ua); const isAppleSilicon = /Mac/.test(ua) && ('ontouchend' in document || navigator.maxTouchPoints > 0); const isRetina = window.devicePixelRatio >= 2; // Canvas/WebGL renderer hint const canvas = document.createElement('canvas'); const gl = canvas.getContext('webgl') || canvas.getContext('experimental-webgl'); const dbgInfo = gl && gl.getExtension('WEBGL_debug_renderer_info'); const gpuRenderer = dbgInfo ? gl.getParameter(dbgInfo.UNMASKED_RENDERER_WEBGL) : ''; const isAppleGPU = /Apple/.test(gpuRenderer) || /Metal/.test(gpuRenderer); if(isAppleGPU || (isSafari && isRetina) || isAppleSilicon){ // Start at MED quality — Apple GPU needs it, can step up if fast enough window._appleGPU = true; console.log('Apple GPU detected — starting at MED quality | GPU:', gpuRenderer || 'unknown'); } })();
A High Density Engineering Production
YOU RAN LONG ENOUGH TO SEE DAWN.
NO ONE BELIEVED YOUR STORY.