Visibility Jam. July 19-21, 2024. See the results.
Arnon's Avatar
Arnon
Member since

Recent Activity

SlimVK is shading up ๐Ÿ™‚
(SlimEngine + Vulkan renderer from scratch)

View original message on Discord

"And now, ... for a taste of thins to come..." (drum-rolls...)

View original message on Discord

SlimTracin++ Has gone out of the dark with proper image-based lighting!
(finally got around to implement a cube-map structure and sampling...)

View original message on Discord

SlimTracin++ (C++) finally at feature-parity with SlimTracin (C) - saved the best for last:
Area Lights with Soft Lighting and Soft Dynamic Shadows
Purely analitical single-sample (no mult/random sampling) so is naturally noise-free

View original message on Discord

SlimTracin++ almos at feature parity with SlimTracin(C) on both CPU and GPU:
Materials: PBR (Cook-Torrance BRDF), Normal Maps, Glass, Mirror, Classic shaders
Debug Modes: UVs, Normals, Mip-Levels (using Cone Tracing), BVH, Depth
Anti-Aliasing: SSAA (optional)

View original message on Discord

SlimTracin++ codebase can now run as-is CPU or GPU (CUDA) - toggelable at runtime:

View original message on Discord

Finally, got around to finishing up mesh support in SlimTracin++ (C++):
Still single-threaded CPU only and no SIMD:

View original message on Discord

Gertsner Waves using a Mesh Shader in my software rasterizer:

View original message on Discord

PBR (Cook Torrance) is working again, and behaves nicely with Glass and Mirror materials (bettern than the Blinn one from before). Bounce throughput accumulation is now based on Fresnel so behaves more physically accurate.

View original message on Discord

Time to Disco! ๐Ÿ˜›
C++ port of my pure-software raytracer is coming along nicely (single-threaded, no SIMD).
It's effectively x2 faster than the original C code now, especially at high trace depths.

View original message on Discord

Ray Cones for Ray Traced Mip-Mapping (Mip Level Selection):
Ended up going back to my more approximated solution (also covered in my stream) as it works more robustly, is simpler and cheaper to compute, and produces useful results.
https://youtu.be/I4Y29YAmLZw

View original message on Discord

Well, Gustavo made such a noice video about it that I had to try it out with SlimApp:

View original message on Discord

Tightened both scene BVH's AABBs and SSBs (55fps -> 60fps, 65 -> 90fps):
(SSB only useful for primary rays but scene BVH still used for shadows/reflections)

View original message on Discord

Porting SlimTracin to the new C++ codebade (Single-threaded CPU, no SIMD):
https://github.com/HardCoreCodin/SlimTracinCpp/blob/main/src/examples/02_Geometry.cpp

  • Improved Geometry example (02)
  • All ray distances are now in world space, including for local-space tracing. Simplifies code dramatically, reduce overhead of hit transformations, and unlocks early-outs for further away hits from currently-closest distance, both within ray/primitive intersections and across scene BVH AABBs
  • Ray/Sphere and Ray/Box intersection overhaul optimization
  • Texture mip selection using Ray Cones and UV-coverage (fixed)
  • Normal map proper direction rotations (quaternion-based, fixed issues)
  • Fixed all outstanding rendering and user-interactions issues

TODO:

  • Finish all other examples
  • Reintroduce triangular mesh support with mesh BVHs
  • Reintroduce GPU support (CUDA)
View original message on Discord

Been working on an implementation of a fast algorithm for finding the closest point on a triangular mesh using a spatial aceleration structure for the broad-phase, and wrote an interactive application showing it in action using my SlimEngine++ software 3D rendering framework:

https://youtu.be/B0rwUXFKca4
https://youtu.be/vaFkAab-nYg
https://youtu.be/8kabp2JLkuw

The CPU implementation is still fast enough for realtime on a 50K poly mesh, even without being multithreaded or vectorized. But it can also optionally run on the GPU using CUDA.

View original message on Discord

And wrote a debug view of mip-level selection:

View original message on Discord

Also been fixing up texturing and normal mapping in my software rasterizer (SlimRaster++):

View original message on Discord

Working on a workshop/course on interactive software rendering (no GPU) using SlimApp++ Covers 2D raycasting and 3D raytracing, and next up is soft shadows (w/ contact hardening):

View original message on Discord

Finished the C++ port of SlimRaster (originally in C) baseed on SlimEngine++: https://github.com/HardCoreCodin/SlimRasterCpp

  • Added code screenshots to the readme
View original message on Discord

Major restructuring of SlimEngine++ : https://github.com/HardCoreCodin/SlimEngineCpp

  • Much more opt-in/pay-for-what-you-use as opposed to batteries-included
  • Scene, Selection, Viewport and Hud now need to be instantiated explicitly (if/as needed)
  • 'draw(*)' now free functions (exp. included for non-single-header variant per-drawable)
  • 'mouse' is now a global namespace (instead of a struct instance, like 'os::')
  • No more global 'settings::' namespace (memory isn't pre-allocated automagically)
  • No more global 'memory::' namespace (monotonic-allocator is now opt-in)
  • Transform and Camera orientation structs improved
  • obj2mesh CLI improved (added scaling and rotation arguments)
  • All example apps rewritten and tested with both single-header and lib variants
  • README.md updated with new code screenshots showing the new API use
View original message on Discord

SlimApp ported into ideomatic C++ (OOP-style) on a separate branch (cpp): https://github.com/HardCoreCodin/SlimApp/tree/cpp/src

Notable changes:

  • Structs now embody their related functions as member methonds (including App and PixelGrid which now embeds all drawing functions)

  • Entry point (only thing that needs to be defined) is now ```cpp SlimApp* createApp()

  instead of: ```c
void initApp(Defaults *defaults)

it now needs to return a pointer to the app, which could be an instance of a sub-class

  • All callbacks are now overridable virtual methods on the SlimApp struct.

  • init is now a virtual method and has a detault implementation (so not required):

bool SlimApp::OnReady()
  • The Defaults stuct members were moved into the app instance. They can be overridden either in createApp() or OnReady().

  • Platform moved to being a (static)struct with static-only members os instead of a member instance of App (app.platform) so: cpp os::setWindowCapture(true); os::setCursorVisibility(false); instead of: ```c app->platform.setWindowCapture(true); app->platform.setCursorVisibility(false);

- Rect now passed by refference (instead of by pointer):
```cpp
void drawShapesToCanvas(PixelGrid &canvas) {
    // Draw and fill a rectangle with different colors:
    Rect rect;
    rect.min.x = rect.min.y = 100;
    rect.max.x = rect.max.y = 300;
    canvas.fillRect(Color(Blue), rect);
    canvas.drawRect(Color(Red ), rect);

All sample apps tested and working.

View original message on Discord

Auto mip-level selection when texture sampling, using ray-cones:

View original message on Discord

SlimTracing Updated: https://github.com/HardCoreCodin/SlimTracin

  • All examples now come with CPU/GPU variants
  • Textures included (have much smaller footprint)
  • Examples updated with new GIFs and screenshots
View original message on Discord

SlimTracing: Goodby Lamber, Bling and Phong... Hello Cook, Torrance, Schlick and Smith! ๐Ÿ˜‡

View original message on Discord

Pushed to github (excluding the textures as they are too big)

View original message on Discord

SlimEngine with the software rasterizer (single-threaded, no SIMD), doing high-poly with 2K textures, normal maps and AA:

View original message on Discord

Major Update to SlimEngine: https://github.com/HardCoreCodin/SlimEngine Quality: Line drawing and blending improved significantly and can now also use MSAA. Performance: Improved somewhat across the board. Robustness: All examples tested in C and C++ on multiple compilers and architectures. API: Simplified and improved argument-order consistency. Correctness: Many subtle bugs and issues fixed, .mesh and .scene files now work on x86 and x64. Presentation: Updated README.md (screenshots and gifs re-captured).

View original message on Discord

Fixed some alpha-blending issues for Anti-Aliased line drawing. Looks much better now already, but then wanted to implement (software)MSAA on-top... ๐Ÿ™‚

View original message on Discord

JavaScript vs. C (pure software rasterization): ~70 / ~14 = ~5x

Well, not too bad actually (all things considered...)

View original message on Discord

Live-toggeling between Raytracing vs. Rasterization of the same scene (for verifying correctness of the rasterizer, so switched-off shadows of the raytracer)

View original message on Discord

Ported my software rasterizer from TypeScript to C (SlimEngine):

View original message on Discord

BVH debug-mode also works well ๐Ÿ™‚

View original message on Discord

3D Line drawing now account for the depth buffer appropriately, with perspective-corrected depth interpolation, and with antialiasing ๐Ÿ™‚

View original message on Discord

The entire code for this demo ๐Ÿ™‚ (and yes, that's a JavaScript pixel shader there, fancy that...)

View original message on Discord

One liner sliders, camera controls and texture wrapping

View original message on Discord

Bi-Linear filtering in pure TypeScript (I'm honestly impressed by how well JavaScript performs...)

View original message on Discord

Let there be lights! ๐Ÿ˜„

Hosted interactively using GitHub pages: https://hardcorecodin.github.io/RenderEngine3D (double-click then WASD + mouse)

View original message on Discord

CPU Rasterizer: Pixel Shaders and Vertex attribute interpolation in Clipping and Rasterization (perspective-corrected barycentrics):

View original message on Discord

Got back to my old software-rasterizer (implemented from scratch in TypeScript - will port to C soon'ish...). Just finished: Culling, clipping, rasterisation (w/ persp. corrected interpolation) and materials with mesh/pixel shaders:

View original message on Discord

Added the perspective projection visualization to SlimEngine in the examples section: https://github.com/HardCoreCodin/SlimEngine

View original message on Discord

My submission fo the 3B1B "Summer of Math Explainers" contest: https://youtu.be/hdv_pnMVaVE

About how Perspective Projection works in 4D Projective space (when using OpenGL/Direct3D) Used my handmade SlimEngine project to write the visualization software.

View original message on Discord

Line drawing: Anti-aliasing, depth sorting and proper alpha blending:

View original message on Discord

Fixed a bunch of issues with the area lights (emissive quads) Soft shadows behave much more naturally now. There was a problem of negative light being accumulated that caused overly strong shadows, especially in areas that are lit by other light sources - it all blends much more naturally now.

View original message on Discord

I'm just having waaay too much fun at this point(s)... ๐Ÿ˜‹

View original message on Discord

Point lights are now fully integrated in the rendering (as opposed to being a post-pass) so they appear in reflections and refractions (causing some interesting effects especially when inside a glass shape ๐Ÿ™‚ ) They also blend nicely volumetrically and obey occlusion.

View original message on Discord

Point lights now show as glowing spherical volumes (analytically-integrated) They're also now movable and scalable (scale changes intensity)

View original message on Discord

Area light soft-shadows! ๐Ÿ™‚
Not physically accurate at all - just visually plausible. Shadow sharpness reacts to changes in dimensions, orientation and proximity of the emissive quad. Simple ray-tracing approximisations (no path-tracing, no stochatic-sampling/integration, no cone-tracing, no ray-matching, no sdf, no rasterisation, etc.) (pure-software, single-threaded)

View original message on Discord

Quads can now be emissive, becomming area-lights (no shadows yet)

View original message on Discord

...and chucked onto CUDA ๐Ÿ™‚ (same exact code cross-compiled to both CPU and GPU) GPU mode can be toggled on/off dynamicly

View original message on Discord

Here's the behind-the-scenes magic (BVH with top-down SweepSAH algorithm, and some good depth-first traversal):

View original message on Discord

"...and now... for a taste of things to come..." (written from-scratch using my SlimEngine - pure-software, no-GPU, single-threaded, no-SIMD) Tomorrow, I'll chuck it onto CUDA - just for kicks ๐Ÿ˜„

View original message on Discord

Simplified string/file handeling and scene setup: Scene settings now has a file (string) member. Meshes now load automagically from provided file paths. Memory is now allocated automatically for meshes (by reading their headers before loading). No more need to set-aside additional memory for them ๐Ÿ™‚

View original message on Discord

Few last updates to SlimEngine: Added companion CLI tool for converting .obj to .mesh supporting vertex normals and texture coordinates. Scens can now also be saved to and loaded from .scene files. (Added/updated examples and README)

https://github.com/HardCoreCodin/SlimEngine

View original message on Discord

SlimEngine is now complete! https://github.com/HardCoreCodin/SlimEngine (no plans to add anything, as I wanna keep it slim/minimalist)

For clarity, here's a summary:

  • Plain C: Compilable in either C or C++
  • Platform-agnostic and very slim (barebone executable is ~17Kb).
  • Self-contained: No dependencies (except for math.h).
  • Single-header or a header-directory ("unity build").
  • Rich README with heavilly documented examples.

Features:

  • 3D viewport with wireframe rendering, rich navigation and a flexible HUD.
  • Scene with cameras, meshes and parametric 3D shapes.
  • Scene selection with rich interactive manipulation.
  • Mesh: Loading from files, instancing and wire-frame drawing.
  • Semi-automatic memory allocation for scene content.
  • Scene and viewport are fully customizable via callbacks.

Based on SlimApp (a base-project for windowe'd apps) featuring:

  • A well-behaved window (resizable, minimizable, etc.).
  • Canvas for drawing numbers, text and basic shapes.
  • Mouse and keyboard input capturing and handling.
  • File reading and writing.
  • Memory arena allocation.
View original message on Discord

Added support for triangular meshes:

  • Loading from file
  • Wireframe drawing
  • Instancing
  • Transformation manipulation

https://github.com/HardCoreCodin/SlimEngine

View original message on Discord

Added an example of having multiple cameras and interactively switching between them for the current viewport. Also added camera-shape drawing.

HUD is also fully configurable now: Re-wrote the viewport/HUD example to demonstrate that and updated the readme with code samples from it.

https://github.com/HardCoreCodin/SlimEngine

View original message on Discord

Added support for scene selection and object manipulation (TRS). Also just moving around stuff along the screen without selecting. Uses ray-casting against bounding boxes (in object-space). Works on all geometry types. (BTW, the executable is 53KB!)

https://github.com/HardCoreCodin/SlimEngine

View original message on Discord

Working on an off-shoot to my SlimApp called SlimEngine, with a lot more of a base for a hand-made 3D engine (CPU): https://github.com/HardCoreCodin/SlimEngine

Next-up: Scene selection and interactive manipulations (TRS), then mesh loading and rendering ๐Ÿ™‚
I already have most of the code in another project, just cleaning stuff up migrating it into this one. Haven't actually re-constructed the single-header-file variant yet, but the directory-variant works

View original message on Discord

Added basic file reading and writing to SlimApp (using win32 in that platform layer). Also improved the examples and README a bunch: https://github.com/HardCoreCodin/SlimApp

View original message on Discord

Made this super-minimal (~13Kb) app/platform layer(s) lib: https://github.com/HardCoreCodin/SlimApp No dependencies on anything (not even any standard library stuff). Can compile in either C or C++. CPU-only (no OpenGL). Very beginner friendly, leaner and smaller than other alternatives. Currently only implemented win32 for the platform layer, but app-layer is completely decoupled. (Documented by examples - check'em out to see if you like it)

View original message on Discord

"Look ma... No red squiggles!" #VSCodeFTW!

View original message on Discord

Finally got tired enough of re-compiling for light tweaking, so wrote my own light and color controlls ๐Ÿ˜‹ The stored values are in Linear, but the swatches are displayed in sRGB (gamma corrected). I think it makes it more intuitive to explore the gamut this way, as the colors you pick more closely represent how they impact the scene. And the colors in the picker show how there's more gamut space taken by the lower-ends of the values.

View original message on Discord

And this time it runs just fine on the GPU (using CUDA) at 1080p(!) ๐Ÿ˜‡ (Even though it still uses recursion)

View original message on Discord

Having fun with specular and reflective shaders again ๐Ÿ˜‡ This time with a scene and acceleration structures (BVH & SSB) with multiple types of polygonal geometry:

View original message on Discord

...and if triangles are possible on tetrahedra, then quads on cubes are also, because why the not..? ๐Ÿ˜‹

View original message on Discord

...and now on the GPU (~2K FPS ๐Ÿ˜† )

View original message on Discord

Tetrahedra are now dynamically resizable & rotatable. Acceleration structure mix: Screen-space bounds for culling primary ray intersections BVH for culling shadow ray intersections Ray/tetrahedron intersection checks now default to happen in tangent-space for a ~20% performance boost :)

View original message on Discord

New and improved way of generating screeen-space bounds for visibility masking! Derived the new approach myself: Gets perfect perspective projection of spheres onto a rectangular 2D bounds, at any FOV, without needing any AABBs, or a projection matrix, and doesn't use any trig.

Much more accurate and very robust to even the most extreme FOV(!) The old way was breaking down completely there (as can be seen around the end)

Red = Old Yellow = New

View original message on Discord

BVH FTW!!!

(...or NOT in this case...) ๐Ÿ˜† SSB = ScreenSpace Bounds check

Turns out that for such a simple scene it's better to just have one node as both root and leaf...๐Ÿ˜‡

View original message on Discord

Added Cylindical columns (dynamically editable, w/ collision-detection, etc.) Full demo: https://youtu.be/RxBg8BsLVxo

View original message on Discord

CPU vs. GPU : Can now be toggled dynamically at run-time! ๐Ÿ˜‹ Even while interacting with the camera, togeling debug-render modes, etc. Also switched to showing micro-seconds per-frame in the HUD

View original message on Discord

Chucked it onto CUDA for some ridiculus FPS... ๐Ÿ˜‹

View original message on Discord

Got ray/triangle intersection working ๐Ÿ˜‡ Still no acceleration structure, so still slow... Though came up with an in/out-testing approach for tetrahedral-triangles that's ~30% faster (doing it in tangent-space instead of world-space): y > 0 && y < x*SQRT3 && y < (1 - x)*SQRT3 Donno it it's a common thing I've re-invented or not, but works very nicely ๐Ÿ˜Ž

View original message on Discord

Recursive Ray-Tracing is sooooo much fun!๐Ÿ˜‡ (when it works...๐Ÿ˜‹ ) Initial material system:

  • Double-sided, with transparency + transparent shadows + animated UV rotation (just for fun...)
  • Solid glass (finally fixed...)
  • Multi-bounce (Ray-depth = 4)
View original message on Discord

Double-sided glass (with air inside): Refraction + Reflection with fresnel ๐Ÿ˜Ž

View original message on Discord

Real time Ray-Traced reflections! On a single threaded CPU (without SIMD) Because hey, why the hell not...? ๐Ÿ˜Ž

Per-geometry material: Lamber walls and a small ball Phong ball Blinn ball Chrome ball (Blinn-based)

View original message on Discord

...aaaaand we got shadows ๐Ÿ˜‡ Wasn't even that difficult to add (take that rasterization... ๐Ÿ˜‹ ), and not even that expensive

View original message on Discord

"I got walls!" ๐Ÿ˜‹ Fps deffinitly taking a dive now at higher resolutions, especially with Blinn Still real-time at lower res. though ๐Ÿ˜‡ Not too much to optimize for simple ray/plane intersections... Onto shadows and reflections next! ๐Ÿ˜

View original message on Discord

...aaaand now some old-school shading, just for fun ๐Ÿ˜‹ (Lamvert, Phong and Blinn, with Ambient + 3-point lighting with quadratic-atteniuation) Really digging this new per. ๐Ÿค˜

View original message on Discord

Got back to my CPU RayTracer (single-threaded, no SIMD) applying a very simplified "Acceleration Structure", and got a MASSIVE performace boost. Not a BVH or anything (yet), but works very well for spheres ๐Ÿ˜‡ Debug-mode shows how it works: Just doing an orthographic projection of each sphere onto a projection plane set at a distance of the sphere's center (appropriately scaled, accounting for the focal length), then taking a screen-space bounding-rectangle. Additionally, pre-emptively filtering-out spheres that can be easilly rejected as being out of view. The HUD show's how many "active" spheres are being considered, as well as what overall percentage of the screen's pixels get a ray traced for them ๐Ÿ˜ With these kind of FPSes, gonna start doing some shading now.

View original message on Discord

Dungeon crawler lighting! ๐Ÿ˜‹ 60FPS @ 580x400 Torchlight: Spherical quadratic attenuation (per-pixel lighting) Bi-Linear Filtering @ 256x256 textures All while still being a 1D->2D ray-caster ๐Ÿ˜‡

View original message on Discord

Stress testing filtering with higher resolution textures (128x128) Also tried with 256x256, though the differences then become even less apparent. In motion, especially with applied lighting, bi-linear looks just as good as tri-linear, and runs twice as fast so... I guess tri-linear is not really worth it in this case

View original message on Discord

Added support for different texture boundry sampling methods, including wrap-around - allowing for seamless tiled texture sampling and filtering ๐Ÿ™‚ (showing texture border with/without filtering for both)

View original message on Discord

Texturing stack overhawl:
Improved texture filtering and sampling (Tri-Linear), also for the mini-map

Current Feature List: Tri-Linear Filtering Depth Dimming Dynamic Field of View FPS Controls (with acceleration/deccelleration) Collision Detection Mini-Map: Dynamically Editable Fullly textured Shows player's vision Follows player's movement Can be Moved Can be Resized Can be Panned Can be Zoomed

Written completely from scratch in Odin (Pure Software): No Libraries No Dependencies No Hardware Acceleration No SIMD No Multi-Threading

View original message on Discord

Bi-Linear vs. Tri-Linear Filtering! ๐Ÿ˜‡

View original message on Discord

MipMapping + BiLinear Filtering FTW(!!!) (floor, ceiling, walls and mini-map)

View original message on Discord
  • Added floor and ceiling (reacting properly to dynamic FOV)
  • Mini-map now fully textured
  • Dynamic wall editing on the mini-map still works
View original message on Discord

Minimap can now be independently moved, resized, panned and zoomed, while still being fully interactive :) Also, added FPS controls with acceleration/deceleration and dynamic FOV controls:

View original message on Discord

Ray-cast engine with in-game tile map editor updating live (with tile-edge merging):

View original message on Discord

Working on a new ray-casting algorithm that's x3 to x5 times faster than the good-old wolfestein3D approach, inspired by javidx9 's awesome video about line-of-sight:

View original message on Discord

Finally got to it - custom bitmap brushes from .bmp files, drawing to layered frame buffers :)

https://youtu.be/zJSyAeiaLZA

View original message on Discord