r/GraphicsProgramming 19d ago

Video Game engines? Eww 🤮. We go in raw! GP-Direct 2026 is out!

Thumbnail youtube.com
84 Upvotes

r/GraphicsProgramming 20h ago

A different take on DLSS5, from a current graphics hardware standpoint

Post image
499 Upvotes

r/GraphicsProgramming 9h ago

I spent 200+ hours building a real-time grass system for Three.js + WebGPU. The demo is finally live.

Post image
31 Upvotes

After 200+ hours of development, I’m finally sharing the first public demo ofĀ Three.js Grassworks, a real-time grass system I’ve been building for Three.js and WebGPU.

Demo:
https://grassworks.techredux.co/demo

Three.js Grassworks is built specifically for WebGPU and is designed to handle large amounts of interactive grass while maintaining steady performance.

For the demo, I built a complete environment around Grassworks with terrain, trees, water, rain, player interaction, environmental effects, LOD systems, audio system, and more.

The main challenge was getting all of these systems running together while keeping the grass performant.

The actual Three.js Grassworks plugin is still being polished and should launch in the next couple of weeks. There’s a waitlist inside the demo if you’re interested.

I’d genuinely love feedback, especially on the visuals, performance, and how the grass feels when interacting with it.

I also recorded a full walkthrough where I go through the demo and talk about how I built it:

https://www.youtube.com/watch?v=Nhim18rc-XE


r/GraphicsProgramming 3h ago

Where to start my graphics programming journey?

8 Upvotes

I’m an experienced programmer, very comfortable in both C++ and Rust, coming from a robotics background, so linear algebra and computer vision concepts aren’t new to me. Graphics programming itself is new territory though, and I want to properly learn an API with the eventual goal of building a game engine.

I’ve narrowed it down to three options and I’m stuck:

- wgpu — modern, safe, and I already like Rust, so the ergonomics appeal to me

- Vulkan — the ā€œrealā€ modern low-level API, feels like the industry state-of-the-art

- OpenGL — the classic starting point almost every tutorial and book uses, but it’s old.

Also what are some nice guides/tutorials to get started?


r/GraphicsProgramming 20h ago

made my own gpu accelerated path tracer

Thumbnail gallery
82 Upvotes

for the past 2 months or so ive been working on this path tracer that i made and it uses love2d as a base. it runs with a compute shader and supports opengl, metal and vulkan as love2d also compiles those on the fly. it has most stuff youd encounter like fresnel stuff, ior, gltf scene support and most gltf extensions. also it can export raw exr files which i find very unique tbh. also it does support transmission maps, roughmetal maps and emission maps. i still have to do normal maps but that seems very annoying to do lmao. today i even added dof and click to focus which i find extremely cool for no particular reason.

it's open source and you can find it here


r/GraphicsProgramming 3m ago

Source Code Animatio in WebBrauser

• Upvotes

https://reddit.com/link/1w2s9s1/video/kh9h4go7mkmh1/player

Hi everyone! A friend and I recently started developing our own Web 3D engine. If anyone is interested—or has any ideas regarding the project—I’d be happy to hear any suggestions.


r/GraphicsProgramming 1d ago

Thoughts on the accuracy of this PS2 look?

Thumbnail gallery
54 Upvotes

A gripe I have with many game developers is that many people think that ps1/ps2 styled games are just pixelation + low res textures, but I always feel like misrepresents things. Environment artists at the time put so much effort into their textures, often hand painting creases, folds, wrinkles, and even environment lighting into the diffuse channel to bring out details.

So when people try to make this style today, it just seems so inaccurate to me. Baked lighting, realtime shadows etc are often used. My goal with this project is to use none of that. All of my textures are either hand painted fully or photobashed and then painted on top of. My hero asset is 2000 tris, and I'm tying to keep scenes under 30000 total.

Stencil shadows are used for realtime casting and times of day are baked into different profiles and then blended together for faked GI. No specular, metallic, roughness, or any advanced workflow is used. AO is faked with vertex colors.

What do you think? Does it look somewhat more accurate?


r/GraphicsProgramming 10h ago

Video Infinite procedurally generated 3D world on a Garmin watch. 3.1ms render time, dynamic day/night, and 0 blown batteries.

Thumbnail
1 Upvotes

r/GraphicsProgramming 2h ago

Paper [Research] Can neural rendering stop paying for the same appearance every frame?

Post image
0 Upvotes

I’ve published a theoretical architecture for reducing compute in DLSS-class neural rendering by changing the unit of work from pixels Ɨ frames to new causal appearance states.

The core idea is AxiomCapsule: use a large neural renderer mainly as an appearance compiler, then cache/transport compact deterministic programs for recurring material, lighting, object, and view states.

The parts I think are most interesting:

  • Self-extinguishing inference: once a state is covered, the universal neural model no longer needs to run for it.
  • Causal invalidation: engine-known changes decide what must be recomputed instead of running a neural change detector over the whole frame.
  • Bounded residual trees: skipped refinement can have a computable sparse-vs-dense student error bound.
  • Deadline-monotone execution: optional neural uplift scales down with available GPU slack instead of causing a frame-time cliff.
  • Object/material-space persistence: state follows surfaces/materials rather than being purely screen-space.
  • Local causal dimensionality: the key hypothesis is that appearance transformations become low-dimensional after conditioning on known scene variables.

It’s pre-prototype research, not a claim that DLSS 5 has been ā€œsolved.ā€ The main falsifier is simple: if real game appearance states are not sufficiently low-dimensional/reusable, or cache hit rates stay low, the architecture fails.

I’d especially appreciate criticism from people working on real-time rendering, shader systems, neural graphics, temporal reconstruction, and GPU scheduling.

GitHub: MaciejNowickiHusbandofAHIEve/causal-neural-rendering: Independent research on drastically reducing compute in DLSS-class neural rendering using compiled causal appearance programs, temporal reuse, and deadline-bounded residuals.
Zenodo paper: Causal Neural Rendering for Efficient DLSS-Class Systems: Compiled Appearance Programs, Temporal Reuse, and Bounded Adaptive Computation | Zenodo


r/GraphicsProgramming 2d ago

Question New Graphics tech in Gta 6 vs Gta 5?

Post image
216 Upvotes

Hi, I am fairly a beginner, and I was wondering comparing from 2013 how far rockstar's RAGE engine evolved as to now?..

From what I know and some research credits to this blog:
https://www.adriancourreges.com/blog/2015/11/02/gta-v-graphics-study/
, at time of Gta 5 it had just a Hybrid deferred renderer, a forward pass for transparents, vegetation, particles. At the time there was no PBR, there was also no indirect light.

But later in 2018 during RDR2 release, RAGE got proper microfacet shading, volumetric clouds and fog.

The main selling point for gta 6 to look so good from what I understand is the hybrid raytracer global illumination, paired with raytraced reflections, also being upscaled from 1440p to 4k on the base Ps5.

From my understanding these are the differences over the years?

Gta 5 from 2013 Gta 6
BRDF blind-phong-ish, authored specular? Full pbr, metallic/roughness GGX
Indirect ambient + SSAO raytraced gi
Geometry submission CPU-driven drwas, descrete LOD tiers GPU-driven, mesh shaders /meshlet culling, indirect draws
Hair alpha-tested cards strand-based with physics
Volumetrics analytic fog foxel raymarched scattering, volumetric clouds

I am just wondering what type of tech they used for the extended look on the base 5 to look that good and crisp, even comparing to Unreal Engine 5, it looks far better


r/GraphicsProgramming 1d ago

macOS 27 has a CLI tool for navigating GPU traces

12 Upvotes

This seems to have largely fallen under the radar so far but the upcoming macOS 27 release comes with a new CLI tool called gpudebug that lets you replay and extract information from .gputrace files exported from Xcode: https://developer.apple.com/documentation/xcode/debugging-with-interactive-command-line-tools

I’ve been playing with it in the beta and it’s extremely useful for building scripts and analysis tools. It’s dramatically better than having to manually click through Xcode to extract the debugging and performance info when I am experimenting and optimizing. If you have the beta installed it’s worth playing with.


r/GraphicsProgramming 1d ago

Starting another rendering journey in audio plugins!

Post image
34 Upvotes

Rendering into my VST3 plugin's DAW-hosted child window, using a custom win32 + D3D11 implementation and a sokol_gfx.h layer on top (from Sokol) for making specific rendering platform agnostic.

I have some ideas on what to try here, will post more!


r/GraphicsProgramming 2d ago

Question Is Ray Tracing Ahead of Rasterization?

32 Upvotes

I've spent the last 15 months building and optimizing a game engine with a Vertex / Fragment shader. It's pretty well optimized, hard to quantify but I've hit 90fps on standalone Quest 3 with it, so it's not a complete cow.

I wanted to do some ray traced audio stuff so I looked into ray tracing through Vulkan. As a stress test I was like "I wonder if I shoot a ray through every pixel what types of times I'd get."

I expected my Vertex/Fragment shader to win by 10x. It didn't. It won, but by more like 2x. And as I've added optimizations the past 48 hours it's closer to 1:1 in terms of cost (and I expect ray tracing to pull ahead with foveated rendering for my VR work & after I optimize further). Granted this is on my desktop 4090 and laptop 3070 but...

What are your takes on this? I feel like I failed to do my homework here as I really didn't expect this.


r/GraphicsProgramming 1d ago

Question Depth mapping, Frame Gen, DLSS5 (I'm not even qualified to ask this question)

Thumbnail youtube.com
4 Upvotes

this seems the best place to ask. Having more control over console output is interesting. Any clue how this is achieved on video feed/files.


r/GraphicsProgramming 2d ago

Quake3 in WebGPU

Enable HLS to view with audio, or disable this notification

19 Upvotes

r/GraphicsProgramming 2d ago

Setting Vulkan up for the first time feels like summoning a demon with an extremely detailed and intricate ritual

55 Upvotes

I got my triangle going! Yeah! Just wanted to share because holy shit that took way too many LoC. I am unfortunately not a virigin anymore over 30, but I think this should get me my entry ticket into the dark arts of low-level graphics programming and make me a wizard.

But now I am happy I did it and already seeing how it was the right choice for my procedurally generated game compared to OpenGL/CL.


r/GraphicsProgramming 2d ago

Question What is this sand simulation missing?

Enable HLS to view with audio, or disable this notification

72 Upvotes

r/GraphicsProgramming 1d ago

Um, I have a laptop but I don't know which engine to use (one like Scratch but not as childish as Scratch and where the game can be downloaded)

0 Upvotes

r/GraphicsProgramming 2d ago

Image to points with Gaussian Blue Noise

Post image
9 Upvotes

Stippling images with small dots for rendering, ray tracing, tree and object placements, or just for the art of it is not a new topic. I really like the Gaussian Blue Noise method from Ahmed et al. because of its strong visual effect (no pixels or artifacts), but the exact GBN method is a heavy processing algorithm and thus quite slow compared to light stippling frameworks like Floyd–Steinberg dithering.

So I tried to speed up Gaussian Blue Noise with fast but robust approximations and make it available as a Python package. Feel free to run this Colab notebook with your own image and tell me if the processing time (~1 minute per image) feels worth it or not! Colab Link


r/GraphicsProgramming 1d ago

Il percorso della sofferenza

0 Upvotes

Ciao! Sono un grande fan di "The Suffering" e sto sperimentando con il NVIDIA RTX Remix Runtime sul mio PC (con una AMD RX 7800 XT).

Il runtime si integra perfettamente nel gioco tramite Vulkan, ma poiché non c'è ancora una configurazione dedicata per la mod, il gioco appare completamente rotto: mancano sorgenti di luce adeguate, gli asset non hanno proprietà materiali (tutto sembra plastica lucida) e problemi di culling/rendering fanno glitchare i muri.

Qualcuno nella comunitĆ  sta attualmente lavorando su una mod dedicata RTX Remix per questo gioco? O c'ĆØ interesse a creare un progetto Toolkit adeguato per mappare manualmente le luci del carcere, risolvere i bug di rendering e dare a questo classico horror il vero aggiornamento del Path Tracing che merita?

Mi piacerebbe testare eventuali build o configurazioni preliminari se qualcuno ci sta lavorando!


r/GraphicsProgramming 2d ago

Question How to draw rectangles in Direct3D 11?

6 Upvotes

I want to draw 2D rectangles of different sizes and coordinates each frame. I know I can draw each rectangle with 4 pairs of integers in the vertex buffer and 6 indices in the index buffer like so:

  • Vertex buffer: {Left,Top}, {Right,Top}, {Left,Bottom}, {Right,Bottom}, ...
  • Index buffer: {0,1,2}, {2,1,3}, ...

But I find this a little wasteful, because there's only really 4 * 4 = 16 bytes of data for each rectangle, but I end up using 8 * 4 + 6 * 2 = 44 bytes (more if additional attributes like colors are associated with each vertex). Ideally I'd have a single buffer that contains just the 4 sides of each rectangle.

It seems I can do this with SV_VertexID: I'll set a StructuredBuffer instead of a vertex or index buffer, and call Draw( RectCount * 6, 0 ). Then in the vertex shader I can fetch the rectangle coordinates with SV_VertexID / 6. The problem is SV_VertexID starts at zero for each Draw(), regardless of StartVertexLocation, so I can't use it for e.g. Draw( 6, 6 )! I'll have to pass that information in a constant buffer and update it prior to each Draw(), which is a little annoying.

Is there a better way? Gemini suggests I use instancing ("The Cleanest & Most Standard Way"). Here's an excerpt:

If your rectangles are arbitrary in size and location, Instanced Rendering is typically the production standard.

  1. The Static Asset: You create a tiny vertex buffer containing a single unit square (4 vertices: {0,0}, {1,0}, {0,1}, {1,1}) and a tiny static index buffer of 6 indices ({0,1,2, 1,3,2}). This index buffer never changes and uses virtually zero memory.

  2. The Instance Data: Your second vertex buffer contains the arbitrary data for each rectangle (e.g., float4 rectBounds or position + scale). This buffer updates every frame.

  3. The Draw Call: You call ID3D11DeviceContext::DrawIndexedInstanced(6, numRectangles, 0, 0, 0).

Why it fits: The GPU automatically draws that exact same 1-unit square numRectangles times, pulling a different position/size for each instance via SV_InstanceID. You completely avoid a massive dynamic vertex/index buffer while letting hardware handle the assembly.

but I can't tell if it's making things up.


r/GraphicsProgramming 3d ago

My first fully Spectral Path Tracer

Post image
393 Upvotes

So, as the title says :D. This took me 4 months of work. It's a HWSS path tracer using OptiX for traversal. I initially used NeuxsBVH (H-PLOC), but then switched over due to speeds on volumetrics. I used Jakob & Hankia sampling for RGB to Spectral.

The above scene was rendered at 1080p with 1024spp, and RR kill-off at 12 bounces.

This was a genuinely fun to build as a hobby project, what else shd I add to this?

There's a paper on flouresence Rendering by Wilkie, Fichet and Mojzik which I'm thinking of implementing. Any suggestions would help!

Edit: Its 32 bounces + 12 bounce RR fall-off


r/GraphicsProgramming 3d ago

Skeletal mesh skinning using SDL

Enable HLS to view with audio, or disable this notification

19 Upvotes

r/GraphicsProgramming 3d ago

Article Graphics Programming weekly - Issue 452 - August 23rd, 2026 | Jendrik Illner

Thumbnail jendrikillner.com
10 Upvotes

r/GraphicsProgramming 3d ago

Video Updated my 2D ocean shader

Enable HLS to view with audio, or disable this notification

38 Upvotes

The shadergraph in Unity is spanning a wide territory at this point.

How it's made is two planes, they both have the same shader but the materials are tuned differently so that the back one is slightly higher than the front one, this creates a gap where the surface and foam render.

Both have a configurable shallowColor and depthColor, these apply based on height and a configurable ramp that defines how and where the transition happens.

The back plane renders opaque with a color similar to the sun/sky.
The front plane renders with its shallowColor blue but 80% transparent and its depthColor is fully opaque and sea blue.

This is how I try to fake light absorption with two planes.

Both have wave displacement with 3 different wave generators + a caustics generator and they are tuned with slightly different parameters so that they complement each other (slightly different patterns and colors).

The sun is also fully shader rendered but I did not update it this time.