Hacker News with Generative AI: Computer Graphics

Measuring Acceleration Structures (zeux.io)
Hardware accelerated raytracing, as supported by DirectX 12 and Vulkan, relies on an abstract data structure that stores scene geometry, known as “acceleration structure” and often referred to as “BVH” or “BLAS”. Unlike geometry representation for rasterization, rendering engines can not customize the data layout; unlike texture formats, the layout is not standardized across vendors.
Measuring Acceleration Structures (zeux.io)
Hardware accelerated raytracing, as supported by DirectX 12 and Vulkan, relies on an abstract data structure that stores scene geometry, known as “acceleration structure” and often referred to as “BVH” or “BLAS”. Unlike geometry representation for rasterization, rendering engines can not customize the data layout; unlike texture formats, the layout is not standardized across vendors.
The demoscene as a UNESCO heritage in Sweden (goto80.com)
The demoscene has become a national UNESCO-heritage in Sweden, thanks to an application that Ziphoid and me did last year.
Actually drawing some ovals – that are not ellipses (2017) (medium.com)
In the last part I hopefully made it clear why you wouldn’t want to use an actual ellipse when making a real object, curves constructed from multiple fixed radius arcs are much more useful and look just the same.
The Wrong Way to Use a Signed Distance Function (SDF) (winterbloed.be)
Disclaimer: there’s nothing wrong with using a sdf this way.
I'd like to take a moment to speak to you about the Adobe PSD format (2009) (github.com/gco)
When Gaussian Splatting Meets 19th Century 3D Images (shkspr.mobi)
Depending on which side of the English Channel / La Manche you sit on, photography was invented either by Englishman Henry Fox Talbot in 1835 or Frenchman Louis Daguerre in 1839.
Hunyuan3D-2-Turbo: fast high-quality shape generation in ~1s on a 4090 (github.com/Tencent)
Bolt3D: Generating 3D Scenes in Seconds (szymanowiczs.github.io)
Feed-forward 3D scene generation in 6.25s on a single GPU.
Laplacian Mesh Smoothing by Throwing Vertices (nosferalatu.com)
In this blog post, I’ll talk about smoothing and blurring 3D meshes using Laplacian mesh smoothing.
Ask HN: 2x Arc A770 or 1x Radeon 7900 XTX for llama.cpp (ycombinator.com)
Can't find "apple to apple" comparison on performance on QWQ 32b (4bit), can anyone help me with decision on which solution to pick?
Soft body procedural animation [video] (youtube.com)
A GS-Cache Inference Framework for Large-Scale Gaussian Splatting Models (arxiv.org)
Rendering large-scale 3D Gaussian Splatting (3DGS) model faces significant challenges in achieving real-time, high-fidelity performance on consumer-grade devices.
The Early History of Deferred Shading and Lighting (sites.google.com)
At the 2004 Game Developer Conference Matt Pritchard (one of my coworkers at the now closed Ensemble Studios who wrote Age of Empires 2's graphics code), John Brooks (CTO and my boss at Blue Shift Inc., the graphics programmer on "Super Mario Wacky Worlds") and I came out of the cold and gave a fairly rushed, but groundbreaking 1 hour presentation on real-time deferred rendering techniques to an audience of 300-400 people.
Show HN: Rust Vector and Quaternion Lib (github.com/David-OConnor)
Vectors and quaternions, and matrices for general purposes, and computer graphics.
JCGT – Arc Blanc: a real time ocean simulation (jcgt.org)
Get Started with Neural Rendering Using Nvidia RTX Kit (Vulkan) (nvidia.com)
Neural rendering is the next era of computer graphics.  By integrating neural networks into the rendering process, we can take dramatic leaps forward in performance, image quality, and interactivity to deliver new levels of immersion.
Mountains, Cliffs, and Caves: A Guide to Using Perlin Noise for Procedural Gen (jdhwilkins.com)
Procedural generation is everywhere—you’ve probably encountered it without even realising. It’s what gives in-game worlds their rolling hills, jagged cliffs, and winding cave systems. And at the heart of it all is Perlin noise: a special kind of randomness that isn’t entirely random at all. It’s smooth where it needs to be, rough when we want it to be, and endlessly customizable.
Rotors: A practical introduction for 3D graphics (2023) (jacquesheunis.com)
When putting 3D graphics on a screen, we need a way to express rotations of the geometry we’re rendering.
Animations vs. Geometry [video] (youtube.com)
Magic Secret of Nine (C64 demo) explained (linusakesson.net)
In this video and accompanying article I reveal how the seemingly impossible effect in Nine was pulled off.
Unigraphics, 1974–2001 (computer.org)
VLMaterial: Procedural Material Generation with Large Vision-Language Models (arxiv.org)
Procedural materials, represented as functional node graphs, are ubiquitous in computer graphics for photorealistic material appearance design.
M.W. Mouse Pointer Schemes for Windows (mw.rat.bz)
Back in around 2005 I was using a PC with Windows XP. During that period I was fortunate to find a program that allowed you to edit the Windows XP mouse pointer (aka Cursors [1]) graphics.
Sparse Voxels Rasterization: Real-Time High-Fidelity Radiance Field Rendering (svraster.github.io)
We optimize adaptive sparse voxels radiance field from multi-view images without SfM points. The fly-through videos are rendered by our SVRaster in >100 FPS.
Animate Anyone 2: High-Fidelity Character Image Animation (humanaigc.github.io)
Recent character image animation methods based on diffusion models, such as Animate Anyone, have made significant progress in generating consistent and generalizable character animations. However, these approaches fail to produce reasonable associations between characters and their environments.
Don't "optimize" conditional moves in shaders with mix()+step() (iquilezles.org)
In this article I want to correct a popular misconception that's been making the rounds in computer graphics aficionado circles for a long time now.
Generating Voronoi diagrams using Fortune's algorithm (redpenguin101.github.io)
Generating Voronoi Diagrams using Fortune’s Algorithm
Simulating water over terrain (lisyarus.github.io)
If you don't want a long an boring introduction, skip directly to the virtual pipes method description.I will get a little bit sad if you do this, though x)
How Are Images Stored? A Deep Dive into GIF, PNG, and JPEG (cefboud.com)
This post is me indulging in a rabbit hole. I somehow found myself thinking about images, probably after my recent exploration of some compression schemes. It’s common knowledge that images are either grayscale or RGB, that mixing red, green, and blue creates new colors. But there’s certainly more to storing an image than just aligning three-byte RGB values.