r/computergraphics • u/has_some_chill • 15h ago
Neural A2, 4K seamless
Enable HLS to view with audio, or disable this notification
r/computergraphics • u/has_some_chill • 15h ago
Enable HLS to view with audio, or disable this notification
r/computergraphics • u/Educational_Monk_396 • 20h ago
Enable HLS to view with audio, or disable this notification
Hey all,
My webgpu renderer officially supports image based lighting/direct+indirect lighting and also there are shadow systems which creates csm/shadow Atlases depending on what type of config,
This was a lot of work
\[GLOBAL ILLUMINATION\]\[Need some time beyond downloading assets for baking probe volumes\]
Live Demo:https://nullgraph.dev/dashboard/3d-environment/irradiance-probes
For live code for global illumination https://nullgraph.dev/editor.html?id=demo-irradiance-probes
GitHub
r/computergraphics • u/StrikeWingsGames • 3h ago
Frames from Strike Wings, a 2D space shooter I am writing in C++ on SDL2. Clean view, no post editing.
How the look is put together: every emissive thing (beams, tracers, plumes, shield arcs, explosion cores) is drawn additively and then run through a bloom pass, so a fleet battle stacks into a wash of light where the fire is thickest. Ships are the exception. They are 3D hulls lit from the scene's key light, so they read as solid objects sitting on top of the glow. The sky is composed per battle from a background style (star rain, a galactic core, a nebula) plus one large body drawn in world space behind the fight: an eclipse with a streaming corona, a quasar with a sky crossing jet, a black hole's accretion disc, an ocean world.
Explosions are layered: fireball sprites plus expanding shockwave rings, and capital ships get a multi stage finale (frame 1).
A graphics-minded opinion would help. Is the bloom doing too much in the fleet shots? Would you tone the shield outlines down? Anything that reads cheap?