Best of Graphics ProgrammingJune 2025

  1. 1
    Video
    Avatar of lowlevelgamedevLow Level Game Dev·50w

    It's easy to make games in C++ from scratch!

    Making games in C++ from scratch is more accessible than commonly believed, requiring only basic language features like functions, structs, and vectors. A three-step approach involves learning fundamental C++ concepts, creating simple 2D games using libraries like SFML, and progressively tackling more complex projects like Terraria clones. While game engines offer quick prototyping, custom C++ development provides better optimization control and fewer limitations for specific game types, particularly those requiring custom systems like voxel-based games.

  2. 2
    Video
    Avatar of lowlevelgamedevLow Level Game Dev·47w

    Should you start with OpenGL or Vulkan?

    OpenGL is significantly easier to learn than Vulkan for beginners, requiring 10 times less code to render basic graphics. While Vulkan offers better performance and more control, it demands extensive programming experience and complex debugging. OpenGL remains viable for many applications and provides a better foundation for understanding graphics programming concepts before potentially transitioning to Vulkan.

  3. 3
    Article
    Avatar of codropsCodrops·51w

    Building a Real-Time Dithering Shader

    A detailed walkthrough of creating a real-time dithering shader using GLSL and WebGL. The implementation uses a 4x4 Bayer matrix for ordered dithering, supports optional pixelation and grayscale modes, and integrates with the postprocessing library as a composable effect. The shader transforms smooth gradients into stylized pixel patterns reminiscent of 8-bit graphics, offering customizable parameters like grid size and pixel ratio for retro visual effects in modern web applications.

  4. 4
    Article
    Avatar of 80lv80 LEVEL·48w

    Custom Unity Renderer Transforming 3D Scenes into Pixel Art

    Red Giraffe created a custom Unity render pipeline that transforms 3D scenes into pixel art using downsampling and quantization techniques. The system works by downsampling internal textures into low-resolution buffers, quantizing them, then upsampling back to source resolution. The colorful shadows are achieved through a custom render pass that quantizes the image and matches shadow values to appropriate available colors.

  5. 5
    Article
    Avatar of chromeChrome Developers·47w

    What's New in WebGPU (Chrome 138)

    Chrome 138 introduces several WebGPU improvements including simplified buffer binding syntax, stricter size validation for mapped buffers, updated GPU architecture reporting for Nvidia Blackwell and AMD RDNA4, deprecation of GPUAdapter's isFallbackAdapter attribute, and enhanced Dawn framework support with Emscripten integration for cross-platform development.