Voices of Payments: interview with Nuvei. December 09, 2025

Watch the video

You are using an obsolete browser (Internet Explorer < 11). For a safe user experience use the latest version.

Derivative Shaders -

Here’s an interesting, conceptual write-up on — a niche but powerful technique in real-time graphics.

At their core, derivative shaders leverage — ddx and ddy in HLSL/GLSL. These functions measure how any value changes between neighboring pixels (in x and y screen directions). They’re automatic, free (in compute cost), and reveal the hidden topology of your render. derivative shaders

Known as "Derivative Shaders," or more accurately, shader programming utilizing derivative functions, this technique allows developers to measure the rate of change of variables across the surface of a triangle. It is the hidden engine behind anti-aliasing procedural textures, crisp font rendering, and dynamic level of detail. Here’s an interesting, conceptual write-up on — a

Derivatives are powerful, but they come with strict rules regarding control flow. Here’s an interesting