mastodon.gamedev.place is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mastodon server focused on game development and related topics.

Server stats:

5.4K
active users

Nikita Lisitsa

Another weird raytracing bug! The black patches on the border are expected - these are artifacts due to having an extremely low-poly metallic surface with interpolated normals.

The white circles, however, are probably some funny floating-point business

@lisyarus I had different-but-conceptually-similar artifacts on my Java raytracer years ago, especially on quartics. Floating point are hard. :(

@lisyarus Are you offsetting your ray start position by the (flat, non shaded) geometry normal * epsilon?

That's the usual solution to self shadowing acne artifacts at least.

For translucent materials you have to swap the sign of this bias based on the sign of dot(geomNormal, bsdfRay).

@lisyarus
Does changing the roughness improve or worsen the effect? If so, it would suggest precision loss somewhere in the BSDF.
Dividing by a variable less than 2^-23 is the usual suspect.

An rng bug could maybe introduce patterns, too, but most likely the BSDF.

I tend to reject sampling pdfs below 1e-6 since it will likely introduce either a firefly or +inf

@vethanis It was the roughness, yep! I increased the minimal roughness value from 0.02 to 0.05 and it did the trick.