A 3D First-Person Game Running on the Playdate's No-GPU Hardware

Game developer Cristina Ramos posted a video on July 22, 2026 to Bluesky showing a 3D first-person game running on the Playdate handheld (Engadget). The demo features first-person platforming through interior spaces and rooftop parkour reminiscent of Mirror's Edge, the 2008 first-person parkour game from DICE.
Ramos, who posts under the handle @saffroncr.bsky.social, stated on Bluesky that she had been told 3D and exterior Mirror's Edge-style levels could not be done on the Playdate. She built the demo to prove those claims wrong (Engadget).
To understand what Ramos accomplished, it helps to know what the Playdate actually is. Designed by Panic and Teenage Engineering, the device is a monochrome handheld with a 400×240-pixel, 1-bit sharp memory LCD and a 180 MHz ARM Cortex-M7 processor. It has no GPU, no dedicated graphics rendering hardware, and a display with no built-in grayscale support. Every frame a developer draws must be pushed to the screen through CPU-driven pixel manipulation — essentially asking the main processor to do all the graphical heavy lifting that a graphics chip would normally handle. The hardware was designed around 2D sprite-based games and crank-driven novelty mechanics, not polygonal 3D rendering.
That context matters. Real-time 3D on this device means the CPU alone is handling every step a graphics card would normally take care of: transforming 3D coordinates into 2D screen positions (vertex transformation and projection), filling in the shapes (rasterization), and figuring out which surfaces are in front of which (depth sorting). All of this has to fit within the memory and processing budget of a small embedded chip. First-person platforming adds further demands: detecting collisions with the level's geometry, providing spatial audio cues, and keeping input responsive enough that the game feels playable, not sluggish.
The demo includes both interior traversal and exterior rooftop sequences, which means Ramos tackled two distinct rendering scenarios. Indoor environments typically have closer surfaces and tighter occlusion (objects blocking the view of other objects), while outdoor scenes require different calculations for draw distance and visibility.
Ramos did not publish technical details of her rendering approach alongside the video. The demo footage itself, however, shows textured or shaded surfaces, perspective-correct geometry, and movement through connected spaces at what appears to be a playable frame rate. On a 1-bit display — where each pixel can only be fully on or fully off — any apparent shading or texture is achieved through dithering patterns, meaning the renderer is also managing pattern selection per-pixel or per-region to simulate depth and material variation on a screen that has no native grayscale capability.
The choice of Mirror's Edge as a visual reference is specific and deliberate. That game's core loop is about reading an environment at speed, identifying parkour routes, and executing precise movement through architectural space. Translating that experience to a 1-bit, CPU-bound handheld requires not just rendering 3D geometry but rendering it clearly enough for a player to make spatial judgments from a first-person perspective. A dithered, low-resolution 3D environment is notoriously difficult to read for depth and distance, which makes the demo's apparent playability worth noting.
In my view, the Playdate has consistently attracted the kind of developer who treats hardware constraints as a creative catalyst rather than a limitation. Ramos's demo fits squarely in that tradition. The broader point is that "cannot be done" claims in game development are frequently less about hard technical ceilings than about the effort and ingenuity required to clear them. A 180 MHz microcontroller with no GPU is not where anyone expects to find first-person 3D platforming, and yet the demo exists and runs.
The demo also arrives when the indie development community around unconventional hardware is visibly active. Devices like the Playdate, the Analogue Pocket, and various retro handhelds have cultivated ecosystems where technical experimentation is valued for its own sake, not merely as a means to a shippable product. Ramos's video is a proof of concept, not an announced commercial title, and it stands as an example of what motivated individual developers can extract from hardware that was never designed for the task.
Whether the techniques Ramos developed here influence other Playdate developers or remain a singular technical achievement is not yet established. The video itself, though, functions as a direct rebuttal to the assumption that the Playdate's hardware profile precludes real-time 3D with first-person movement through navigable spaces.


