// This file is part of the 64k demo project. // It defines the public interface for the GPU rendering system. // Coordinates WebGPU lifecycle and draw calls. #pragma once struct GLFWwindow; void gpu_init(GLFWwindow *window); void gpu_draw(float audio_peak, float aspect_ratio, float time); void gpu_shutdown();