Full Width [alt+shift+f] Shortcuts [alt+shift+k]
Sign Up [alt+shift+s] Log In [alt+shift+l]
1
Text rendering is cursed. Anyone who has worked on text will tell you the same; whether it's about layout, bi-directional, shaping, Unicode, or the rendering itself, it's never a completely solved problem. In my personal case, I've been working on trying to render text in the context of a compositing engine for creative content. I needed crazy text effects, and I needed them to be reasonably fast, which implied working with the GPU as much as possible. The distance field was an obvious requirement because it unlocks anti-aliasing and the ability to make many great effects for basically free. In this article, we will see how to compute signed distance field on the GPU because it's much faster than doing it on the CPU, especially when targeting mobile devices. We will make the algorithm decently fast, then after lamenting about the limitations, we will see what kind of effects this opens up. Progressive build of the 'あ' glyph from the Mochiy Pop One font Extraction of glyph outlines Non-bitmap fonts contain glyphs defined by outlines made of closed sequences of lines and (quadratic or cubic) Bézier curves. Extracting them isn't exactly complicated: FreeType or ttf-parser typically expose a way to do that. For the purpose of this article, we're going to hard code the list of the Bézier curves inside the shader, but of course in a more serious setup those would be uploaded through storage buffers or similar. Using this tiny program, a glyph can be dumped as series of outlines into a fixed size array: struct Bezier { vec2 p0; // start point vec2 p1; // control point 1 vec2 p2; // control point 2 vec2 p3; // end point }; #define N 42 #define NC 2 const int glyph_A_count[2] = int[](33, 9); const Bezier glyph_A[42] = Bezier[]( Bezier(vec2( 0.365370, -0.570817), vec2( 0.374708, -0.631518), vec2( 0.332685, -0.687549), vec2( 0.339689, -0.748249)), Bezier(vec2( 0.339689, -0.748249), vec2( 0.339689, -0.748249), vec2( 0.344358, ...
1st Nov 2025

Stay updated

Get a weekly newsletter with the top 5 articles worth reading every week.

More from A small freedom area RSS

A series of tricks and techniques I learned doing tiny GLSL demos

In the past two months or so, I spent some time making tiny GLSL demos. I wrote an article about the first one, Red Alp. There, I went into details about the whole process, so I recommend to check it out first if you're not familiar with the field. We will look at 4 demos: Moonlight, Entrance 3, Archipelago, and Cutie. But this time, for each demo, we're going to cover one or two things I learned from it. It won't be a deep dive into every aspect because it would be extremely redundant. Instead, I'll take you along a journey of learning experiences. Moonlight Moonlight demo in 460 characters // Moonlight [460] by bµg // License: CC BY-NC-SA 4.0 void main(){vec3 o,p,u=vec3((P+P-R)/R.y,1),Q;Q++;for(float d,a,m,i,t;i++<1e2;p=t<7.2?Q:vec3(2,1,0),d=abs(d)*.15+.1,o+=p/m+(t>9.?d=9.,Q:p/d),t+=min(m,d))for(p=normalize(u)*t,p.z-=5e1,m=max(length(p)-1e1,.01),p.z+=T,d=5.-length(p.xy*=mat2(cos(t*.2+vec4(0,33,11,0)))),a=.01;a<1.;a+=a)p.xz*=mat2(8,6,-6,8)*.1,d-=abs(dot(sin(p/a*.6-T*.3),p-p+a)),m+=abs(dot(sin(p/a/5.),p-p+a/5.));o/=4e2;O=vec4(tanh(mix(vec3(-35,-15,8),vec3(118,95,60),o-o*length(u.xy*.5))*.01),1);} Note See it on its official page, or play with the code on its Shadertoy portage. In Red Alp, I used volumetric raymarching to go through the clouds and fog, and it took quite a significant part of the code to make the absorption and emission convincing. But there is an alternative technique that is surprisingly simpler. In the raymarching loop, the color contribution at each iteration becomes 1/d or c/d where d is the density of the material at the current ray position, and c an optional color tint if you don't want to work in grayscale level. Some variants exist, for example 1/d^2, but we'll focus on 1/d. 1/d explanation Let's see how it looks in practice with a simple cube raymarch where we use this peculiar contribution: One glowing and rotating cube void main() { float d, t; vec3 o, p, u = normalize(vec3(P+P-R,R.y)); // screen to world coordinate for (int i = 0; i < 30; i++) { p = u * t; // ray position p.z -= 3.; // take a step back // Rodriguez rotation with an arbitrary angle of π/2 // and unaligned axis vec3 a = normalize(cos(T+vec3(0,2,4))); p = a*dot(a,p)-cross(a,p); // Signed distance function of a cube of size 1 p = abs(p)-1.; d = length(max(p,0.)) + min(max(p.x,max(p.y,p.z)),0.); // Maxed out to not enter the solid d = max(d,.001); t += d; // stepping forward by that distance // Our mysterious contribution to the output o += 1./d; } // Arbitrary scale within visible range O = vec4(o/200., 1); } Note The signed function of the cube is from the classic Inigo Quilez page. For the rotation you can refer to Xor or Blackle article. For the general understanding of the code, see my previous article on Red Alp. The first time I saw it, I wondered whether it was a creative take, or if it was backed by physical properties. Let's simplify the problem with the following figure: A ray passing by a radiating object The glowing object sends photons that spread all around it. The further we go from the object, the more spread these photons are, basically following the inverse square law 1/r^2, which gives the photons density, where r is the distance to the target object. Let's say we send a ray and want to know how many photons are present along the whole path. We have to "sum", or rather integrate, all these photons density measures along the ray. Since we are doing a discrete sampling (the dots on the figure), we need to interpolate the photons density between each sampling point as well. Given two arbitrary sampling points and their corresponding distance d_n and d_{n+1}, any intermediate distance can be linearly interpolated with r=\mathrm{mix}(d_n,d_{n+1},t) where t is within [0,1]. Applying the inverse square law from before (1/r^2), the integrated photons density between these 2 points can be expressed with this formula (in t range): t being normalized, the \Delta t is here to covers the actual segment distance. With the help of Sympy we can do the integration: >>> a, b, D, t = symbols('a b D t', real=True) >>> mix = a*(1-t) + b*t >>> D * integrate(1/mix**2, (t,0,1)).simplify() D ─── a⋅b So the result of this integration is: Now the key is that in the loop, \Delta t stepping is actually d_{n+1}, so we end up with: And we find back our mysterious 1/d. It's "physically correct", assuming vacuum space. Of course, reality is more complex, and we don't even need to stick to that formula, but it was nice figuring out that this simple fraction is a fairly good model of reality. Going through the object In the cube example we didn't go through the object, using max(d, .001). But if we were to add some transparency, we could have used d = A*abs(d)+B instead, where A could be interpreted as absorption and B the pass-through, or transparency. One glowing, transparent, and rotating cube; A=0.4, B=0.1 I first saw this formula mentioned in Xor article on volumetric. To understand it a bit better, here is my intuitive take: the +B causes a potential penetration into the solid at the next iteration, which wouldn't happen otherwise (or only very marginally). When inside the solid, the abs(d) causes the ray to continue further (by the amount of the distance to the closest edge). Then the multiplication by A makes sure we don't penetrate too fast into it; it's the absorption, or "damping". This is basically the technique I used in Moonlight to avoid the complex absorption/emission code. Entrance 3 Entrance 3 demo in 465 characters // Entrance 3 [465] by bµg // License: CC BY-NC-SA 4.0 #define V for(s++;d<l&&s>.001;q=abs(p+=v*s)-45.,b=abs(p+vec3(mod(T*5.,80.)-7.,45.+sin(T*10.)*.2,12))-vec3(1,7,1),d+=s=min(max(p.y,-min(max(abs(p.y+28.)-17.,abs(p.z+12.)-4.),max(q.x,max(q.y,q.z)))),max(b.x,max(b.y,b.z)))) void main(){float d,s,r=1.7,l=2e2;vec3 b,v=b-.58,q,p=mat3(r,0,-r,-1,2,-1,b+1.4)*vec3((P+P-R)/R.y*20.4,30);V;r=exp(-d*d/1e4)*.2;l=length(v=-vec3(90,30,10)-p);v/=l;d=1.;V;r+=50.*d/l/l;O=vec4(pow(mix(vec3(0,4,9),vec3(80,7,2),r*r)*.01,p-p+.45),1);} Note See it on its official page, or play with the code on its Shadertoy portage. This demo was probably one of the most challenging, but I'm pretty happy with its atmospheric vibe. It's kind of different than the usual demos for this size. I initially tried with some voxels, but I couldn't make it work with the light under 512 characters (the initialization code was too large, not the branchless DDA stepping). It also had annoying limitations (typically the animation was unit bound), so I fell back to a classic raymarching. The first thing I did differently was to use an L-∞ norm instead of an euclidean norm for the distance function: every solid is a cube so it's appropriate to use simpler formulas. For the light, it's not an illusion, it's an actual light: after the first raymarch to a solid, the ray direction is reoriented toward the light and the march runs again (it's the V macro). Hitting a solid or not defines if the fragment should be lighten up or not. Mobile bugs A bad surprise of this demo was uncovering two driver bugs on mobile: One with tricky for-loop compounds on Snapdragon/Adreno because I was trying hard to avoid the macros and functions. One with chained assignments on Imagination/PowerVR (typically affect Google Pixel Pro 10). The first was worked around with the V macro (actually saved 3 characters in the process), but the 2nd one had to be unpacked and made me lose 2 characters. Isometry Another thing I studied was how to set up the camera in a non-perspective isometric or dimetric view. I couldn't make sense of the maths from the Wikipedia page (it just didn't work), but Sympy rescued me again: # Counter-clockwise rotation a, ax0, ax1, ax2 = symbols('a ax0:3') c, s = cos(a), sin(a) k = 1-c rot = Matrix(3,3, [ # col 1 col 2 # col 3 ax0*ax0*k + c, ax0*ax1*k + ax2*s, ax0*ax2*k - ax1*s, # row 1 ax1*ax0*k - ax2*s, ax1*ax1*k + c, ax1*ax2*k + ax0*s, # row 2 ax2*ax0*k + ax1*s, ax2*ax1*k - ax0*s, ax2*ax2*k + c # row 3 ]) # Rotation by 45° on the y-axis m45 = rot.subs({a:rad(-45), ax0:0, ax1:1, ax2:0}) # Apply the 2nd rotation on the x-axis to get the transform matrices for two # classic projections # Note: asin(tan(rad(30))) is the same as atan(sin(rad(45))) isometric = m45 * rot.subs({a:asin(tan(rad(30))), ax0:1, ax1:0, ax2:0}) dimetric = m45 * rot.subs({a: rad(30), ax0:1, ax1:0, ax2:0}) Inspecting the matrices and factoring out the common terms, we obtain the following transform matrices: The ray direction is common to all fragments, so we use the central UV coordinate (0,0) as reference point. We push it forward for convenience: (0,0,1), and transform it with our matrix. This gives the central screen coordinate in world space. Since the obtained point coordinate is relative to the world origin, to go from that point to the origin, we just have to flip its sign. The ray direction formula is then: To get the ray origin of every other pixel, the remaining question is: what is the smallest distance we need to step back the screen coordinates such that, when applying the transformation, the view wouldn't clip into the ground at y=0. This requirement can be modeled with the following expression: The -1 being the lowest y-screen coordinate (which we don't want into the ground). The lazy bum in me just asks Sympy to solve it for me: x, z = symbols("x z", real=True) u = m * Matrix([x, -1, z]) uz = solve(u[1] > 0, z) We get z>\sqrt{2} for isometric, and z>\sqrt{3} for dimetric. With an arbitrary scale S of the coordinate we end up with the following: const float S = 50.; vec2 u = (P+P-R)/R.y * S; // scaled screen coordinates float A=sqrt(2.), B=sqrt(3.); // Isometric vec3 rd = -vec3(1)/B, ro = mat3(B,0,-B,-1,2,-1,A,A,A)/A/B * vec3(u, A*S + eps); // Dimetric vec3 rd = -vec3(B,A,B)/A/2., ro = mat3(2,0,-2,-1,A*B,-1,B,A,B)/A/2. * vec3(u, B*S + eps); The eps is an arbitrary small value to make sure the y-coordinate ends up above 0. In Entrance 3, I used a rough approximation of the isometric setup. Archipelago Archipelago demo in 472 characters // Archipelago [472] by bµg // License: CC BY-NC-SA 4.0 #define r(a)*=mat2(cos(a+vec4(0,11,33,0))), void main(){vec3 p,q,k;for(float w,x,a,b,i,t,h,e=.1,d=e,z=.001;i++<50.&&d>z;h+=k.y,w=h-d,t+=d=min(d,h)*.8,O=vec4((w>z?k.zxx*e:k.zyz/20.)+i/1e2+max(1.-abs(w/e),z),1))for(p=normalize(vec3(P+P-R,R.y))*t,p.zy r(1.)p.z+=T+T,p.x+=sin(w=T*.4)*2.,p.xy r(cos(w)*e)d=p.y+=4.,h=d-2.3+abs(p.x*.2),q=p,k-=k,a=e,b=.8;a>z;a*=.8,b*=.5)q.xz r(.6)p.xz r(.6)k.y+=abs(dot(sin(q.xz*.4/b),R-R+b)),k.x+=w=a*exp(sin(x=p.x/a*e+T+T)),p.x-=w*cos(x),d-=w;} Note See it on its official page, or play with the code on its Shadertoy portage. For this infinite procedurally generated Japan, I wanted to mark a rupture with my red/orange obsession. Technically speaking, it's actually fairly basic if you're familiar with Red Alp. I used the same noise for the mountains/islands, but the water uses a different noise. The per octave noise curve is w=exp(sin(x)), with the particularity of shifting the x coordinate with its derivative: x-=w*cos(x). This is some form of domain warping that gives the nice effect here. When I say x, I'm really referring to the x-axis position. It is not needed to work with the z-component (xz forms the flat plane) because each octave of the fbm has a rotation that "mixes" both axis, so z is actually backed in x. w=exp(sin(x)) Note I didn't come up with the formula, but found it first one this video by Acerola. I don't know if he's the original author, but I've seen the formula being replicated in various places. Cutie Cutie demo in 616 characters // Cutie [616] by bµg // License: CC BY-NC-SA 4.0 #define V vec3 #define L length(p #define C(A,B,X,Y)k=L-A)-X,e=L-B)-Y,h=max(.8-abs(k-e),z),d=min(d,min(k,e)-h*h/3.2) #define H(Z)S,k=fract(T*1.5+s),a=V(1.3,.2,Z),b=V(1,.3*max(1.-abs(3.*k-1.),z),Z*.75+3.*max(-k*S,k-1.)),q=b*S,q+=a+sqrt(1.-dot(q,q))*normalize(V(-b.y,b.x,0)),C(a,q,.7,S),C(q,a-b,S,.4) void main(){float i,t,k,e,h,z,s,S=.5,d=S;for(V p,q,a,b;i++<5e1&&d>.001;t+=d=min(d,e=L+V(S-2.*p.x,-1,S))-S))p=normalize(V(P+P-R,R.y))*t,p.z-=5.,p.zy*=mat2(cos(vec4(1,12,34,1))),p.xz*=mat2(cos(sin(T)+vec4(0,11,33,0))),d=1.+p.y,C(z,V(z,z,1.2),1.5,1.2),s=p.x<z?p.x=-p.x,z:H(z),s+=H(1.);O=vec4(V(exp(-i/(e>d?1e2:9.))),1);} Note See it on its official page, or play with the code on its Shadertoy portage. Here I got cocky and thought I could manage to fit it in 512 chars. I failed, by more than 100 characters. I did use the smoothmin operator for the first time: every limb of the body of Cutie is composed of two spheres creating a rounded cone (two sphere of different size smoothly merged like metaballs). 2 spheres merging using the smin operator Then I used simple IK kinetics for the animation. Using leg parts with a size of 1 helped simplifying the formula and make it shorter. You may be wondering about the smooth visuals itself: I didn't use the depth map but simply the number of iterations. Due to the nature of the raymarching algorithm, when a ray passes close to a shape, it slows down significantly, increasing the number of iterations. This is super useful because it exaggerate the contour of the shapes naturally. It's wrapped into an exponential, but i defines the output color directly. What's next I will continue making more of those, keeping my artistic ambition low because of the 512 characters constraint I'm imposing on myself. You may be wondering why I keep this obsession about 512 characters, and many people called me out on this one. There are actually many arguments: A tiny demo has to focus on one or two very scoped aspects of computer graphics, which makes it perfect as a learning support. It's part of the artistic performance: it's not just techniques and visuals, the wizardry of the code is part of why it's so impressive. We're in an era of visuals, people have been fed with the craziest VFX ever. But have they seen them with a few hundreds bytes of code? The constraint helps me finish the work: when making art, there is always this question of when to stop. Here there is an intractable point where I just cannot do more and I have to move on. Similarly, it prevents my ambition from tricking me into some colossal project I will never finish or even start. That format has a ton of limitations, and that's its strength. Working on such a tiny piece of code for days/weeks just brings me joy. I do feel like a craftsperson, spending an unreasonable amount of time perfecting it, for the beauty of it. I'm trying to build a portfolio, and it's important for me to keep it consistent. If the size limit was different, I would have done things differently, so I can't change it now. If I had hundreds more characters, Red Alp might have had birds, the sky opening to lit a beam of light on the mountains, etc. Why 512 in particular? It happens to be the size of a toot on my Mastodon instance so I can fit the code there, and I found it to be a good balance.

7th Dec 2025 1 votes
Fast calculation of the distance to cubic Bezier curves on the GPU

Bézier curves are a core building block of text and 2D shapes rendering. There are several approaches to rendering them, but one especially challenging problem, both mathematically and technically, is computing the distance to a Bézier curve. For quadratic curves (one control point), this is fairly accessible, but for cubic (two control points) we're going to see why it is so hard. A glyph from the Virgil font, composed of multiple Bézier curves Having this distance field opens up many rendering possibilities. It's hard, but it's possible; here is a live proof: Distance to a cubic Bézier curve In this visualization, I'm borrowing your device resources to compute the distance to the curve for every single pixel. The yellow points are the control points of the curve (in white) and the blue zone is a representation of the distance field. Note All the demos and code in this article are self-contained GLSL fragment shaders. Most of the code can be found in the article, but feel free to inspect the source code of any of these WebGL demo for the complete code. They can be run verbatim using ShaderWorkshop. The basic maths In a previous article, we explained that a Bézier curve can be expressed as a polynomial. In our case, a cubic polynomial: Where a, b, c and d are the vector coefficients derived from the start (P_0), end (P_3), and control points (P_1, P_2) using the following formulas (you can refer to the previous article for details): For a given point p in 2D space, the distance to that Bézier curve can be expressed as a length between our curve and p: Our goal is to find the t value where d(t) is the smallest. The length formula has an annoying square root, so we start with the distance squared for simplicity, which we are going to unroll: The derivative of that function will allow us to identify critical points: that is, points where the distance starts growing or reducing. Said differently, solving D'(t)=0 will identify all the maximums and minimums (we're interested in the latter) of D(t) (and thus d(t) as well). It is a bit convoluted in our case but straightforward to compute: A polynomial, this time of degree 5, emerges here. For conciseness, we can express D'(t) polynomial coefficients as a bunch of dot products: Finally, we notice that solving D'(t)=0 is equivalent to solving D'(t)/2 = 0, so we simplify the expression: Assuming we are able to solve this equation, we will get at most 5 values of t, among which we should find the shortest distance from p to the curve. Since t is bound within 0 and 1 (start and end of the curve), we will also have to test the distance at these locations. Note We could also compute the 2nd derivative in order to differentiate minimums from maximums, but simply evaluating the 5(+2) potential t values and keeping the smallest works just fine. Distance from a random point to critical testing points of the curve The red dot in the blue field is a random point in space. The red lines show which distances are evaluated (at most 5+2) to find the smallest one. Translated to GLSL code Transposing these formulas into code gives us this base template code: float bezier_distance(vec2 p, vec2 p0, vec2 p1, vec2 p2, vec2 p3) { // Start by testing the distance to the boundary points at t=0 (p0) and t=1 (p3) vec2 dp0 = p0 - p, dp3 = p3 - p; float dist = min(dot(dp0, dp0), dot(dp3, dp3)); // Bezier cubic points to polynomial coefficients vec2 a = -p0 + 3.0*(p1 - p2) + p3, b = 3.0 * (p0 - 2.0*p1 + p2), c = 3.0 * (p1 - p0), d = p0; // Solve D'(t)=0 where D(t) is the distance squared vec2 dmp = d - p; float da = 3.0 * dot(a, a), db = 5.0 * dot(a, b), dc = 4.0 * dot(a, c) + 2.0 * dot(b, b), dd = 3.0 * (dot(a, dmp) + dot(b, c)), de = 2.0 * dot(b, dmp) + dot(c, c), df = dot(c, dmp); float roots[5]; int count = root_find5(roots, da, db, dc, dd, de, df); for (int i = 0; i < count; i++) { float t = roots[i]; // Evaluate the distance to our point p and keep the smallest vec2 dp = ((a * t + b) * t + c) * t + dmp; dist = min(dist, dot(dp, dp)); } // We've been working with the squared distance so far, it's time to get its // square root return sqrt(dist); } Note dot(dp,dp) is a shorthand for the length squared, of course cheaper than computing length() which contains a square root. Warning We assume here the root finder only returns the roots that are within [0,1]. root_find5() is our 5th degree root finder, that is the function that gives us all the t (at most 5) which satisfy: But before we are able to solve that, we need to study the simpler 2nd degree polynomial solving: Solving quadratic polynomial equations Diving into the rabbit hole of solving polynomial numerically will lead you to insanity. But we still have to scratch the surface because superior degree solvers usually rely on it. My favorite quadratic root finding formula is the super simple one introduced by 3Blue1Brown, which involves locating a mid point m from which you get the 2 surrounding roots r: In GLSL, a code to cover most common corner cases would look like this: // Return true if x is not a NaN nor an infinite // highp is probably mandatory to force IEEE 754 compliance bool isfinite(highp float x) { return (floatBitsToUint(x) & 0x7f800000u) != 0x7f800000u; } // Quadratic: solve ax²+bx+c=0 int root_find2(out float r[5], float a, float b, float c) { int count = 0; float m = -b / (2.*a); float d = m*m - c/a; if (!isfinite(m) || !isfinite(d)) { // a is (probably) too small // Linear: solve bx+c=0 float s = -c / b; if (isfinite(s)) r[count++] = s; return count; } if (d < 0.) // no root return count; if (d == 0.) { r[count++] = m; // single root return count; } float z = sqrt(d); r[count++] = m - z; r[count++] = m + z; return count; } Not quite as straightforward as the math formula, isn't it? We cannot know in advance whether the division is going to succeed, so we do run divisions and only then check if they failed (and assume a reason for the failing). This is much more reliable than an arbitrary epsilon value. We also try to avoid duplicated roots. Note The roots are automatically sorted because z is always positive. Warning isfinite() may not be as reliable because in GLSL "NaNs are not required to be generated", meaning some edge case may not be supported depending on the hardware, drivers, and the current weather in Yokohama. As much as I like it, this implementation might not be the most stable numerically (even though I don't have have strong data to back this claim). Instead, we may prefer the formula from Numerical Recipes: Leading to the following alternative implementation: int root_find2(out float r[5], float a, float b, float c) { int count = 0; float d = b*b - 4.*a*c; if (d < 0.) return count; if (d == 0.) { float s = -.5 * b / a; if (isfinite(s)) r[count++] = s; return count; } float h = sqrt(d); float q = -.5 * (b + (b > 0. ? h : -h)); float r0 = q/a, r1 = c/q; if (isfinite(r0)) r[count++] = r0; if (isfinite(r1)) r[count++] = r1; return count; } This is not perfect at all (especially with the b²-4ac part). There are actually many other possible implementations, and this HAL CNRS paper shows how near impossible it is to make a correct one. It is an interesting but depressing read, especially since it "only" covers IEEE 754 floats, and we have no such guarantee on GPUs. We also don't have fma() in WebGL, which greatly limits improvements. For now, it will have to do. Solving quintic polynomial equations: attempt 1 Solving polynomials of degree 5 cannot be solved analytically like quadratics. And even if they were, we probably wouldn't do it because of numerical instability. Typically, in my experience, analytical 3rd degree polynomials solver do not provide reliable results. The first iterative algorithm I picked was the Aberth–Ehrlich method. Nowadays, more appropriate algorithms exist, but at the time I started messing up with these problems (several years ago), it was a fairly good contender. This video explores how it works. The convergence to the roots is quick, and it's overall simple to implement. But it's not without flaws. The main problem is that it works in complex space. We can't ignore the complex roots because they all "respond" to each others. And filtering these roots out at the end implies some unreliable arbitrary threshold mechanism (we keep the root only when the imaginary part is close to 0). The initialization process also annoyingly requires you to come up with a guess at what the roots are, and doesn't provide anything relevant. Aberth-Ehrlich works by refining these initial roots, similar to a more elaborate Newton iterations algorithm. Choosing better initial estimates leads to a faster convergence (meaning less iterations). The Cauchy bound specifies a space by defining the radius of a disk (complex numbers are in 2D space) where all the roots of a polynomial should lie within. We are going to use it for the initial guess, and more specifically its "tight" version (which unfortunately relies on pow()). Since Aberth-Ehrlich is a refinement and not just a shrinking process, we define and use an inner disk that has half the area of Cauchy bound disk. That way, we're more likely to start with initial guesses spread in the "middle" of the roots; this is where the √2 comes from in the formula below. #define K5_0 vec2( 0.951056516295154, 0.309016994374947) #define K5_1 vec2( 0.000000000000000, 1.000000000000000) #define K5_2 vec2(-0.951056516295154, 0.309016994374948) #define K5_3 vec2(-0.587785252292473, -0.809016994374947) #define K5_4 vec2( 0.587785252292473, -0.809016994374948) int root_find5_aberth(out float roots[5], float a, float b, float c, float d, float e, float f) { // Initial candidates set mid-way of the tight Cauchy bound estimate float r = (1.0 + max_5( pow(abs(b/a), 1.0/5.0), pow(abs(c/a), 1.0/4.0), pow(abs(d/a), 1.0/3.0), pow(abs(e/a), 1.0/2.0), abs(f/a))) / sqrt(2.0); // Spread in a circle vec2 r0 = r * K5_0, r1 = r * K5_1, r2 = r * K5_2, r3 = r * K5_3, r4 = r * K5_4; The circle constants are generated with the following script: import math import sys n = int(sys.argv[1]) for k in range(n): angle = 2 * math.pi / n off = math.pi / (2 * n) z = angle * k + off c, s = math.cos(z), math.sin(z) print(f"#define K{n}_{k} vec2({c:18.15f}, {s:18.15f})") Next, it's basically a simple iterative process. Unrolling everything for degree 5 looks like this: #define close_to_zero(x) (abs(x) < eps) // This also filters out roots out of the [0,1] range #define ADD_ROOT_IF_REAL(r) if (close_to_zero(r.y) && r.x >= 0. && r.x <= 1.) roots[count++] = r.x #define SMALL_OFF(off) (dot(off, off) <= eps*eps) /* Complex multiply, divide, inverse */ vec2 c_mul(vec2 a, vec2 b) { return mat2(a, -a.y, a.x) * b; } vec2 c_div(vec2 a, vec2 b) { return mat2(a, a.y, -a.x) * b / dot(b, b); } vec2 c_inv(vec2 z) { return vec2(z.x, -z.y) / dot(z, z); } // Compute f(x)/f'(x): complex polynomial evaluation (y) divided by their // derivatives (q) using Horner's method in one pass vec2 c_poly5d4(float a, float b, float c, float d, float e, float f, vec2 x) { vec2 y = a*x + vec2(b, 0), q = a*x + y; y = c_mul(y,x) + vec2(c, 0); q = c_mul(q,x) + y; y = c_mul(y,x) + vec2(d, 0); q = c_mul(q,x) + y; y = c_mul(y,x) + vec2(e, 0); q = c_mul(q,x) + y; y = c_mul(y,x) + vec2(f, 0); return c_div(y, q); } vec2 sum_of_inv(vec2 z0, vec2 z1, vec2 z2, vec2 z3, vec2 z4) { return c_inv(z0 - z1) + c_inv(z0 - z2) + c_inv(z0 - z3) + c_inv(z0 - z4); } int root_find5_aberth(out float roots[5], float a, float b, float c, float d, float e, float f) { if (close_to_zero(a)) return root_find4_aberth(roots, b, c, d, e, f); // Code snip: see previous snippet // float r = ... // vec2 r0, r1, r2, ... for (int m = 0; m < 16; m++) { vec2 d0 = c_poly5d4(a, b, c, d, e, f, r0), d1 = c_poly5d4(a, b, c, d, e, f, r1), d2 = c_poly5d4(a, b, c, d, e, f, r2), d3 = c_poly5d4(a, b, c, d, e, f, r3), d4 = c_poly5d4(a, b, c, d, e, f, r4); vec2 off0 = c_div(d0, vec2(1,0) - c_mul(d0, sum_of_inv(r0, r1, r2, r3, r4))), off1 = c_div(d1, vec2(1,0) - c_mul(d1, sum_of_inv(r1, r0, r2, r3, r4))), off2 = c_div(d2, vec2(1,0) - c_mul(d2, sum_of_inv(r2, r0, r1, r3, r4))), off3 = c_div(d3, vec2(1,0) - c_mul(d3, sum_of_inv(r3, r0, r1, r2, r4))), off4 = c_div(d4, vec2(1,0) - c_mul(d4, sum_of_inv(r4, r0, r1, r2, r3))); r0 -= off0; r1 -= off1; r2 -= off2; r3 -= off3; r4 -= off4; if (SMALL_OFF(off0) && SMALL_OFF(off1) && SMALL_OFF(off2) && SMALL_OFF(off3) && SMALL_OFF(off4)) break; } int count = 0; ADD_ROOT_IF_REAL(r0); ADD_ROOT_IF_REAL(r1); ADD_ROOT_IF_REAL(r2); ADD_ROOT_IF_REAL(r3); ADD_ROOT_IF_REAL(r4); return count; } When the main coefficient is too small, we fall back on the 4th degree (and so on until we reach the analytic quadratic). The 4th and 3rd degree versions of this function are easy to guess (they're pretty much identical, just removing one coefficient at each degree). We're also hardcoding a maximum of 16 iterations here because it's usually enough. To have an idea of how many iterations are required in practice, following is a visualization of the heat map of the number of iterations for every pixel: Heat map of the iterations of the Aberth-Ehrlich algorithm The big picture and the weaknesses of the algorithm should be pretty obvious by now. Among all drawbacks of this approach, there are also surprising pathological cases where the algorithm is not performing well. Fortunately, there were some progress on the state of the art in recent years. Solving quintic polynomial equations: the state of the art In 2022, Cem Yuksel published a new algorithm for polynomial root solving. Initially I had my reservations because the official implementation had a few shortcomings on some edge cases, which made me question its reliability. It's also optimized for CPU computation and is, to my very personal taste, overly complex. Fortunately, Christoph Peters showed that it was possible on the GPU by implementing it for very large degrees, and without any recursion. Inspired by that, I decided to unroll it myself for degree 5. One core difference with Aberth approach is that it is designed for arbitrary ranges. In our case this is actually convenient because, due to how Bézier curves are defined, we are only interested in roots between 0 and 1. We will need to adjust the Quadratic function to work in this range, as well as keeping the roots ordered: } float h = sqrt(d); float q = -.5 * (b + (b > 0. ? h : -h)); - float r0 = q/a, r1 = c/q; - if (isfinite(r0)) r[count++] = r0; - if (isfinite(r1)) r[count++] = r1; + vec2 v = vec2(q/a, c/q); + if (v.x > v.y) v.xy = v.yx; // keep them ordered + if (isfinite(v.x) && v.x >= 0. && v.x <= 1.) r[count++] = v.x; + if (isfinite(v.y) && v.y >= 0. && v.y <= 1.) r[count++] = v.y; return r; } The core logic of the algorithm relies on a cascade of derivatives for every degree. Christoph Peters provides an analytic formula to obtain the derivative for any degree. This is a huge helper when we need to work for an arbitrary degree, but in our case we can just differentiate manually: Since we're only interested in the roots, similar to what we did to D(t), we can simplify some of these expressions: The purpose of that cascade of derivatives is to cut the curve into monotonic segments. In practice, the core function looks like this: int root_find5_cy(out float r[5], float a, float b, float c, float d, float e, float f) { float r2[5], r3[5], r4[5]; int n = root_find2(r2, 10.*a, 4.*b, c); // degree 2 n = cy_find5(r3, r2, n, 0., 0., 10.*a, 6.*b, 3.*c, d); // degree 3 n = cy_find5(r4, r3, n, 0., 5.*a, 4.*b, 3.*c, d+d, e); // degree 4 n = cy_find5(r, r4, n, a, b, c, d, e, f); // degree 5 reutnr n; } We could unroll cy_find3, cy_find4, and cy_find5, but to keep the code simple, the degree 3 to 5 will share the same function, with leading coefficients set to 0 (hopefully the compiler does its job properly). cy_find5 relies on roots found (at most 4) at previous stages to define intervals of search: Such an approach has the nice side effect of keeping the roots ordered. The solver itself is not that complex either: float poly5(float a, float b, float c, float d, float e, float f, float t) { return ((((a * t + b) * t + c) * t + d) * t + e) * t + f; } // Quintic: solve ax⁵+bx⁴+cx³+dx²+ex+f=0 iint cy_find5(out float r[5], float r4[5], int n, float a, float b, float c, float d, float e, float f) { int count = 0; vec2 p = vec2(0, poly5(a,b,c,d,e,f, 0.)); for (int i = 0; i <= n; i++) { float x = i == n ? 1. : r4[i], y = poly5(a,b,c,d,e,f, x); if (p.y * y > 0.) continue; float v = bisect5(a,b,c,d,e,f, vec2(p.x,x), vec2(p.y,y)); r[count++] = v; p = vec2(x, y); } return count; } The last brick of the algorithm is the Newton bisection, the slowest part: // Newton bisection // // a,b,c,d,e,f: 5th degree polynomial parameters // t: x-axis boundaries // v: respectively f(t.x) and f(t.y) float bisect5(float a, float b, float c, float d, float e, float f, vec2 t, vec2 v) { float x = (t.x+t.y) * .5; // mid point float s = v.x < v.y ? 1. : -1.; // sign flip for (int i = 0; i < 32; i++) { // Evaluate polynomial (y) and its derivative (q) using Horner's method in one pass float y = a*x + b, q = a*x + y; y = y*x + c; q = q*x + y; y = y*x + d; q = q*x + y; y = y*x + e; q = q*x + y; y = y*x + f; t = s*y < 0. ? vec2(x, t.y) : vec2(t.x, x); float next = x - y/q; // Newton iteration next = next >= t.x && next <= t.y ? next : (t.x+t.y) * .5; if (abs(next - x) < eps) return next; x = next; } return x; } And that's pretty much it. Looking at its heat map, it has a completely different look than Aberth: Heat map of the iterations of Cem Yuksel algorithm The number of iterations might be larger but it is much faster (I observed a factor 3 on my machine), the code is shorter, and actually more reliable. Note The scale used to represent the heat map is not the same as the one used in Aberth, but it is identical with the method presented in the next section. Exploring ITP convergence The bisection being the hot loop, it is interesting to ponder how to make this faster. A while back, Raph Levien hypothesized about how the ITP method could perform. Out of curiosity, I gave it a chance. The function is designed to work like a bisection, claiming to be as performant in the worst case. There isn't a lot of code, and the paper provides a pseudo-code. But implementing it was actually challenging in many ways. First of all, the authors didn't seem to find relevant to mention that it only works if f(a)<0<f(b). If f(a)>0>f(b), you're pretty much on your own. It requires just 2 lines of adjustments but figuring out this shortcoming of the algorithm was particularly unexpected. Another bothering aspect concerns the parameters: K_1, K_2 and n_0. The paper proposes those: I played with them for a while and couldn't find any set that would make a real difference, so I ended up with the following: For performance reasons, reducing K_2 to a value of 2 saves a call to pow(). For K_1, CRAN seems to suggest \frac{0.2}{b-a} so I went along with it And for n_0, well 1 or 2 seem to be the usual parameter. In the end, the function looks like this: // ITP algorithm (2020) by Oliveira & Takahashi // "An Enhancement of the Bisection Method Average Performance Preserving Minmax Optimality" // // a,b,c,d,e,f: 5th degree polynomial parameters // t: x-axis boundaries (a and b in the paper) // v: respectively f(a) and f(b) in the paper (evaluation of the function with t.x and t.y) float itp5(float a, float b, float c, float d, float e, float f, vec2 t, vec2 v) { float diff = t.y-t.x; // K1 and n0 suggested by CRAN float K1 = .2 / diff; int n0 = 1; // The paper has the assumption that f(a)<0<f(b) but we want to // support f(a)>0>f(b) too, so we keep a sign flip float s = v.x < v.y ? 1. : -1.; // Using log(ab)=log(a)+log(b): log2(x/(2ε)) <=> log2(x/ε)-1 int nh = int(ceil(log2(diff/eps)-1.)); // n_{1/2} (half point) int n_max = nh + n0; // ε 2^(n_max-k) = ε 2^n_max 2^-k = ε 2^n_max ½^k // ½^k is done iteratively in the loop, simplifying the arithmetic float q = eps * float(1<<n_max); while (diff > eps+eps) { // Interpolation float xf = (v.y*t.x - v.x*t.y) / (v.y-v.x); // Regula-Falsi // Truncation float xh = (t.x+t.y) * .5; // x half point float sigma = sign(xh - xf); float delta = K1*diff*diff; // save a pow() by forcing K2=2 float xt = delta <= abs(xh - xf) ? xf + sigma*delta : xh; // xt: truncation of xf // Projection float r = q - diff*.5; float x = abs(xt-xh) <= r ? xt : xh-sigma*r; // Updating float y = poly5(a,b,c,d,e,f, x); float side = s*y; if (side > 0.) t.y=x, v.y=y; else if (side < 0.) t.x=x, v.x=y; else return x; diff = t.y-t.x; q *= .5; } return (t.x+t.y) * .5; } This function can be used as a drop'in replacement for bisect5. I had a lot of expectations about it, but in the end it requires more iterations than the bisection we implemented. The paper claims to perform at least as good as a bisection, but our bisect5 is driven by the derivatives so it converges much faster. Here is the heat map with itp5 instead of bisect5: Heat map of the iterations of Cem Yuksel algorithm with ITP method Conclusion The naive unrolled version of Cem Yuksel paper definitely is, so far, the best choice for our problem. I have still concerns about how to implement a good quadratic formula, and I have my reservations about various edge cases. There is also still room for improvements in the cubic solver (degree 3) because it's still a special case where analytical formulas exist, but in general this implementation is satisfying. The next step is to work with chains of Bézier curves to make up complex shapes (such as font glyphs). It will lead us to build a signed distance field. This is not trivial at all and mandates one or several dedicated articles. We will hopefully study these subjects in the not-so-distant future.

18th Oct 2025 1 votes
Code golfing a tiny demo using maths and a pinch of insanity

A few weeks ago, I made a tiny demo that fits into 448 characters: Red Alp GLSL demo in 448 characters void main(){vec3 c,p,K=vec3(3,1,0);for(float z,i,a,g=1.,t,h,d,w,k=.15;i++<1e2;d=max(max(d-3. ,-d),a=z)*k,w=g-g/exp(h>.001?a++,d/.4:h*3e2),g-=a*=w,c+=a*d*4.5+(d>z?z:h/2e2)*K,a=min(p.y+2. ,1.),c.r+=w*a*a*.1,t+=min(h*.2,k/=.985))for(p=normalize(vec3(P+P-R,R.y))*t,p.xz*=mat2(cos( sin(T*.2)+K.zyxz*11.)),p.z+=T*.3,d=p.y,h=d+.5,a=.01;a<1.;a+=a)p.xz*=mat2(8,6,-6,8)*.1,d+=abs (dot(sin((p/a+T)*.3),p-p+a)),h+=abs(dot(sin(p.xz*.6/a),P-P+a));O=vec4(tanh(c),1);} Note The number of characters was 464 characters at first, but thanks to the community it got reduced further, and the article updated accordingly. There is no texture, no mesh, no 3D helper: it's simply a procedural mathematical formula evaluated at each pixel assigning them a color. Code golfing is about making it as short as possible, and thus is part of the art performance. To put things into perspective, the 853x480 JPEG thumbnail of this article is 167x larger than this code. You can watch a larger version on its main dedicated page, or a portage on Shadertoy (484 chars). If your device is not powerful enough (I'm sorry for the lag on this page) or doesn't support WebGL2, a short preview video can be seen on Mastodon. I'm guessing the wizardry of the code has confused many people so we're going to dive through the making-of together. Overall, this demo is a particularly dense and entangled compilation of different techniques, where each aspect could mandate a dedicated article. For that reason, some parts will prefer to link to external resources when the literacy is verbose on the subject. Warning Some demos in this article will start "decaying" over time due to floating point variables getting too large. Reloading the page should fix that. The base template The code is written in GLSL and is executed for each pixel (technically each fragment) on a simple quad geometry (to be accurate it's even a single big triangle). There is no geometry aside from that, it's basically just a fragment shader. The fragment receives 3 different inputs: the canvas resolution vec2 R the time float T the pixel position vec2 P (basically gl_FragCoord.xy) And it has to output a sRGB color in out vec3 O. The code has to be written in a void main() function, and that's pretty much all we need to start. If you're curious about the glue to setup WebGL2, just look at the source code on the dedicated page. There is no external dependency and the canvas setup code is pretty simple. Development setup For development, people usually directly use Shadertoy. I prefer to use my own local live coding environment: ShaderWorkshop. It can be run without setting up anything, just uv run --with shader-workshop sw-server (assuming the uv Python package manager is installed on the machine). Aside from the comfort of being able to use your favorite code editor, it allows instancing live controls for uniforms very easily, making it smooth to interact with any value and get an immediate feedback. Red Alp demo with user controls as seen from ShaderWorkshop Noise One of the core primitive we need is a noise function: it is required for the mountains, the fog, and the clouds. In a recent article, I talked about gradient noise. We could technically use that, but it will have a lot of drawbacks. First of all, it's super expensive. I know because I made a demo using it the other day, and it was awfully slow. Once per pixel would be fine, but in our case it will have to be evaluated a hundred times, so we need something faster. Secondly, we're trying to make it as short as possible, and the 2D gradient noise, even minified, is already twice as big as the size of the full demo. We will also need a 3D noise for the clouds and fog, which is even larger and more expensive. And that's not even accounting for the fbm signal combination code. Inigo Quilez, in his famous Rainforest, used value noise. It is faster, but it still won't do for us for the same reasons, just somehow mitigated. And since we're professionals, we're not going to cheat by sampling a noise texture. Fortunately, while reverse engineering some Shadertoy demos, in particular the ones from diatribes, I came across some code that made use of this incredible technique of accumulating sine waves. Combining sin waves Let's say we want to combine two sine waves in order to get a height map as a 3rd dimension. There are multiple ways of achieving that. For example, we can multiply them: But we could also add them together: The surprising take here is that... it's pretty much equivalent. It doesn't give the same result for sure, but visually it could be considered the same, just with a frequency and amplitude a bit different, and rotated on the z axis by 45°. Similarly, you may think using cosines instead of sinusoids would make a difference, but no, even when combined together, they always give the same base pattern we just saw. So let's pick one, let's say z=\sin x + \sin y. But this time, we're going to take the absolute value to transform the up and down pattern into bumps: These bumps are the perfect base for clouds, but not so much for spiky mountains going through aggressive erosion. But with the help of this weird little trick, we can just flip the shape upside down to get sharp edges: We now have the basis for both our clouds and mountains, but it's not yet convincing. The next step is to use the fbm loop as if we were dealing with Gaussian or value noise: we accumulate several frequencies of our signal together: S is the sign (-1 for spiky, 1 for bobby) i is the octave identifier going from 0 to N-1 (included). F(x,y) is usually the noise signal function, in our case it's the sinusoid combination function, we choose |\sin x + \sin y| here. l is the lacunarity factor, that is how frequency changes at each octaves; this is usually a multiply by 2 or a close value. g is the gain, that is by how the amplitude changes at each octaves; this is usually a multiply by 0.5 or a close value. Without surprise this is still very periodic, but we can see a glimpse of chaos emerging. The final touch does all the magic: all we have to do now is simply rotate each layer by like, 30° or something (I'll pick 0.5 radians here, or about 29°): The symmetry around the origin is still noticeable, but the illusion will work as we will move away from it. It's also possible to add some phase or offsetting (arbitrary addition within the sin or between each layer). I implemented this in a Desmos 3D scene with all the parameters if one wants to play with it. The formula there has a few more controls, for example the vertical location, an optional transition offset in addition to the rotation, and controls for the base frequency and amplitude. If this mathematical gibberish is above your head, a GLSL code for the 2D noise could look like this with a lacunarity of 2, a gain of 0.5 and 5 octaves: float noise(vec2 p) { float v = 0.0; float amplitude = 1.0; for (int i = 0; i < 5; i++) { p = rotate(0.5) * p; // rotate our space (more on this in the next section) v += abs(sin(p.x) + sin(p.y)) * amplitude; // accumulate noise p *= 2.0; // double the frequency at each octave amplitude *= 0.5; // half the amplitude at each octave } return v; } One cool trick here: abs(sin(p.x)+sin(p.y)) could also be written abs(dot(sin(p),vec2(1))). This is interesting because now we can operate on the two components of p, easing the possibility to modify them at once (for example doing p*A+B). The dot trick doesn't work with sin(p.x)*sin(p.y), but fortunately, as we saw before, multiply and addition are similar and could be swapped in various situations. Rotations We needed some rotation for the noise, and they will be required again soon, so we need to have a closer look to them. Let's start with the formula most people are familiar with: A matrix can be seen as a function, so mathematically writing p'=M \cdot p would be equivalent to the code p=rotate(angle)*p with: // Matrix for a counter-clockwise rotation mat2 rotate(float a) { return mat2( cos(a), sin(a), // column 1 -sin(a), cos(a) // column 2 ); } Doing p'=M \cdot p is rotating the space p lies into, which means it gives the illusion the object is rotating clockwise. Though, in the expression p=rotate(angle)*p, I can't help but be bothered by the redundancy of p, so I would prefer to write p*=rotate(angle) instead. Since matrices are not commutative, this will instead do a counter-clockwise rotation of the object. The inlined rotation ends up being: p *= mat2(cos(a),sin(a),-sin(a),cos(a)); // counter-clockwise rotation of object at point p Note To make the rotation clockwise, we can of course use -a, or we can transpose the matrix: mat2(cos(a),-sin(a),sin(a),cos(a)). This is problematic though: we need to repeat the angle 4 times, which can be particularly troublesome if we want to create a macro and/or don't want an intermediate variable for the angle. But I got you covered: trigonometry has a shitton of identities, and we can express every sin according to a cos (and the other way around). For example, here is another formulation of the same expression: p *= mat2(cos(a + vec4(0,3,1,0)*PI/2.0)); Now the angle appears only once, in a vectorized cosine call. GLSL has degrees() and radians() functions, but it doesn't expose anything for \pi nor \tau constants. And of course, it doesn't have sinpi and cospi implementation either. So it's obvious they want us to use \arccos(-1) for \pi and \arccos(0) for \pi/2: p *= mat2(cos(a + vec4(0,3,1,0)*acos(0.))); Note To specify a as a normalized value, we can use mat2(cos((a*4.+vec4(0,3,1,0))*acos(0.))). On his Unofficial Shadertoy blog, Fabrice Neyret goes further and provide us with a very cute approximation, which is the one we will use: p *= mat2(cos(a + vec4(0,11,33,0))); I checked for the best numbers in 2 digits, and I can confirm they are indeed the ones providing the best accuracy. Comparison of the 2 rotations matrices On this last figure, the slight red/green on the outline of the circle represents the loss of precision. Note With 3 digits, 344 and 699 can respectively be used instead of 11 and 33. This is good when we want a dynamic rotation angle (we will need that for the camera panning typically), but sometimes we just need a hardcoded value: for example in the rotate(0.5) of our combined noise function. mat2(cos(.5+vec4(0,11,33,0))) is fine but we can do better. Through Inigo's demos I found the following: mat2(.8,.6,-.6,.8). It makes a rotation angle of about 37° (around 0.64 radians) in a very tiny form. Since 0.5 was pretty much arbitrary, we can just use this matrix as well. And we can make it even smaller (thank you jolle): p *= mat2(8,6,-6,8)*.1; // rotate p counter-clockwise by about 37° without any trigo One last rotation tip from Fabrice's bag of tricks: rotating in 3D around an axis can be done with the help of GLSL swizzling: p.xz *= rotate(0.5); // 3D rotation around y-axis (the absent component) We will use this too. Note p.zy *= rotate(.5) is the same p.yz *= rotate(-.5), if we need to save one character and can't transpose the matrix. Camera (and axis) setup One last essential before going creative is the camera setup. We start with the 2D P pixel coordinates which we are going to make resolution independent by transforming them into a traditional mathematical coordinates system: // 1:1 ratio with [-1,1] along the shortest axis (horizontal or vertical) vec2 u = (2.0*P - R) / min(R.x, R.y); Since we know our demo will be rendered in landscape mode, dividing by R.y is enough. We can also save one character using P+P: // 1:1 ratio with [-1,1] along the vertical axis vec2 u = (P+P - R) / R.y; To enter 3D space, we append a third component, giving us either a right or a left-handed Y-up coordinates system. This choice is not completely random. Indeed, it's easier/shorter to add a 3rd dimension at the end compared to interleaving a middle component. Compare the length of vec3(P, z) to vec3(P.x, z, P.y) (Z-up convention). In the former case, picking just a plane remains short and easy thanks to swizzling: p.xz instead of p.xy. To work in 3D, we need an origin point (ro for ray origin) and a looking direction (rd for ray direction). ro is picked arbitrarily for the eye position, while rd is usually calculated thanks to a lookAt helper: // Right-hand with Y-up (like Godot) mat3 lookAt(vec3 origin /* where we are */, vec3 target /* where we look */) { vec3 w = normalize(target - origin); vec3 u = normalize(cross(w, vec3(0,1,0))); vec3 v = normalize(cross(u, w)); // Note: normalize() can be ditched here return mat3(u, v, w); } Right-hand Y-up 3D coordinates system Which is then used like that, for example: vec2 u = (P+P - R) / R.y; vec3 target = /* ... */; vec3 ro = /* ... */; vec3 rd = normalize(lookAt(ro, target) * vec3(u, 1)); Note I made a Shadertoy demo to experiment with different 3D coordinate spaces if you are interested in digging this further. All of this is perfectly fine because it is flexible, but it's also way too much unnecessary code for our needs, so we need to shrink it. One approach is to pick a simple origin and straight target point so that the matrix is as simple as possible. And then later on apply some transformations on the point. If we give ro=vec3(0) and target=vec3(0,0,1), we end up with an identity matrix, so we can ditch everything and just write: vec3 rd = normalize(vec3((P+P - R) / R.y, 1)); This can be shorten further: since the vector is normalized anyway, we can scale it at will, for example by a factor R.y, saving us precious characters: vec3 rd = normalize(vec3(P+P - R, R.y)); And just like that, we are located at the origin vec3(0), looking toward Z+, ready to render our scene. Mountain height map It's finally time to build our scene. We're going to start with our noise function previously defined, but we're going tweak it in various ways to craft a mountain height map function. Here is our first draft: const float mountain_y = -0.5; // mountain y-axis position const float mountain_f = 0.6; // mountain base frequency float mountain_height_map(vec2 p) { float h = mountain_y; for (float a = 1.0; a > 0.01; a /= 2.0) { p *= rotate(0.5); h += abs(dot(sin(p*mountain_f / a), vec2(1))) * a; // dot(sin(v),1) -> sin(v.x)+sin(v.y) } return -h; // minus for the spiky version of the noise } We're exploiting one important correlation of the noise function: at every octave, the amplitude is halving while the frequency is doubling. So instead of having 2 running variables, we just have an amplitude a getting halved every octave, and we divide our position p by a (which is the same as multiplying by a frequency that doubles itself). I actually like this way of writing the loop because we can stop the loop when the amplitude is meaningless (a>0.01 acts as a precision stopper). Unfortunately, we'll have to change it to save one character: a/=2. is too long for the iteration, we're going to double instead by using a+=a which saves one character. So instead the loop will be written the other way around: for (float a=.01; a<1.; a+=a). It's not exactly equivalent, but it's good enough (and we can still tweak the values if necessary). We're going to inline the constants and rotate, and use one more cool trick: vec2(1) can be shortened: we just need another vec2. Luckily we have p, so we can simply replace it with p/p. Finally, we can get rid of the braces of the for loop by using the , in its local scope: float mountain_height_map(vec2 p) { float h = -.5; for (float a=.01; a<1.; a+=a) p *= mat2(8,6,-6,8)*.1, h += abs(dot(sin(p*.6/a), p/p))*a; return -h; } p/p works fine as long as it's not zero. In this particular case, we can instead use vec2(0) (obtained with p-p) and then include the a amplitude multiplier within the expression: abs(dot(sin(p*.6/a), p-p+a)). (p-p+a is the same as vec2(a) when p is a vec2). We end up with the following safer version: float mountain_height_map(vec2 p) { float h = -.5; for (float a=.01; a<1.; a+=a) p *= mat2(8,6,-6,8)*.1, h += abs(dot(sin(p*.6/a), p-p+a)); return -h; } Mountain height map in 2D (rescaled for display) To render this in 3D, we are going to do some ray-marching. Solid ray-marching The main technique used in most Shadertoy demos is ray-marching. I will assume familiarity with the technique, but if that's not the case, An introduction to Raymarching (YouTube) by kishimisu and Painting with Math: A Gentle Study of Raymarching by Maxime Heckel were good resources for me. In short: we start from a position in space called the ray origin ro and we project it toward a ray direction rd. At every iteration we check the distance to the closest solid in our scene, and step toward that distance, hoping to converge closer and closer to the object boundary. We end up with this main loop template: float t = 0.0; vec3 ro = vec3(0); // ray origin vec3 rd = normalize(vec3(P+P - R, R.y)); // ray direction // 100 iterations should be enough to hit something if there is any for (int i = 0; i < 100; i++) { vec3 p = ro + rd*t; // t amount in rd direction from ro origin float h = distance_to_solid(p); // 3D distance function if (h < 0.001) { // we converged close enough to a solid // Here we assign a color according to where p is // [...] break; } t += h; // there is no solid closer than h so we step by that much } This works fine for solids expressed with 3D distance fields, that is functions that for a given point give the distance to the object. We will use it for our mountain, with one subtlety: the noise height map of the mountain is not exactly a distance (it is only the distance to what's below our current point p): float distance_to_solid(vec3 p) { // positive outside, negative inside return p.y - mountain_height_map(p.xz); } Because of this, we can't step by the distance directly, or we're likely to go through mountains during the stepping (t += h). A common workaround here is to step a certain percentage of that distance to play it safe. Technically we should figure out the theorical proper shrink factor, but we're going to take a shortcut today and just arbitrarily cut. Using trial and error I ended up with 20% of the distance. After a few simplifications, we end up with the following (complete) code: float mountain_height_map(vec2 p) { float h = .5; for (float a=.01; a<1.; a+=a) p *= mat2(8,6,-6,8)*.1, h += abs(dot(sin(p*.6/a), p-p+a)); return -h; } float distance_to_solid(vec3 p) { return p.y - mountain_height_map(p.xz); } void main() { vec3 rd = normalize(vec3(P+P - R, R.y)); float t = 0.0, color = 0.0; for (int i = 0; i < 100; i++) { vec3 p = rd*t; p.z += T*.2; // move forward float h = distance_to_solid(p); if (h < 0.001) { color = exp(-t*t*.01); // depth map like "coloring" break; } t += h * 0.2; } O = vec4(vec3(pow(color, 3.0/2.2)), 1); } Basic ray-marching of the mountain height map We start at ro=vec3(0) so I dropped the variable entirely. You may be curious about the power at the end; this is just a combination of luminance perception with gamma 2.2 (sRGB) transfer function. It only works well for grayscale; for more information, see my previous article on blending. Clouds and fog Compared to the mountain, the clouds and fog will need a 3 dimensional noise. Well, we don't need to be very original here; we simply extend the 2D noise to 3D: float noise3(vec3 p) { float v; for (float a=.01; a<1.; a+=a) p.xz *= mat2(8,6,-6,8)*.1, v += abs(dot(sin(p*.3/a + T*.3), p-p+a)); return v; } The base frequency is lowered to 0.3 to make it smoother, and the p goes from 2 to 3 dimensions. Notice how the rotation is only done on the y-axis, the one pointing up): don't worry, it's good enough for our purpose. We also add a phase (meaning we are offsetting the sinusoid) of T*0.3 (T is the time in seconds, slowed down by the multiply) to slowly morph it over time. The base frequency and time scale being identical is a happy "coincidence" to be factored out later (I actually forgot about it until jolle reminded me of it). You also most definitely noticed v isn't explicitly initialized: while only true WebGL, it guarantees zero initialization so we're saving a few characters here. Volumetric ray-marching For volumetric material (clouds and fog), the loop is a bit different: instead of calculating the distance to the solid for our current point p, we do compute the density of our target "object". Funny enough, it can be thought as a 3D SDF but with the sign flipped: positive inside (because the density increases as we go deeper) and negative outside (there is no density, we're not in it). const float clouds_y = 3.0; // vertical position float clouds_density(vec3 p) { float n = noise3(p); // random value associated with a 3D position in space float h = -clouds_y + n; // similar to mountain_height_map() but 3d and bobby float d = p.y - h; // similar to distance_to_solid() d = -d; // flip sign: distance to density // We are only interested in the density within the material, // the density will be considered 0 when outside of it. return max(d, 0.0); } For simplicity, we're going to rewrite the function like this: const float clouds_y = 3.0; float clouds_density(vec3 p) { float n = noise3(p); float d = -p.y - cloud_y + n; return max(d, 0.0); } Compared to the solid ray-marching loop, the volumetric one doesn't bail out when it reaches the target. Instead, it slowly steps into it, damping the light as the density increases: const float absorption = 0.15; const float radiance = 1.0; void main() { float step_len = 0.15; float t; vec3 rd = normalize(vec3(P+P-R,R.y)); vec3 color; float transmittance = 1.0; // remaining visibility for (int i = 0; i < 100; i++) { vec3 p = rd*t; // Move camera forward p.z += T * 1.5; // How many particules of the material we can find at that position // If negative, we're not in the element yet, otherwise it's the density // (getting higher as we go deeper into it typically). float d = clouds_density(p); // Integrate the density discretely: we assume the segment of length // we're walking has the same point density all along d *= step_len; // The fraction of light that survives through this segment (Beer-Lambert law) // The denser, the closer to 0 this gets float attenuation = exp(-d*absorption); float emission = d*radiance; // how much light is emitted along the segment (glow) float alpha = 1.0 - attenuation; // fraction of light removed for that given density segment float weight = alpha * transmittance; // Accumulate color emission color += weight * emission; transmittance -= weight; // could also be written transmittance *= attenuation // Normal volumetric marching (step_len) clamped to the distance to the // solid (mountain) t += step_len; // Larger volumetric steps as we go far step_len *= 1.015; } O = vec4(pow(color, vec3(3.0/2.2)), 1); } The core idea is that the volumetric material emit some radiance but also absorbs the atmospheric light. The deeper we get, the smaller the transmittance gets, til it converges to 0 and stops all light. All the threshold you see are chosen by tweaking them through trial and error, not any particular logic. It is also highly dependent on the total number of iterations. Note Steps get larger and larger as the distance increases; this is because we don't need as much precision per "slice", but we still want to reach a long distance. Basic volumetric ray-marching of the clouds density map We want to be positioned below the clouds, so we're going to need a simple sign flip in the function. The fog will take the place at the bottom, except upside down (the sharpness will give a mountain-hug feeling) and at a different position. clouds_density() becomes: const float clouds_y = 3.0; const float fog_y = 0.0; float clouds_fog_density(vec3 p) { float n = noise3(p); float clouds_d = p.y - clouds_y + n; float fog_d = p.y - fog_y + n; // Pick the element with the highest density (they don't overlap anyway) float d = max(clouds_d, -fog_d); return max(d, 0.0); } Both clouds and fog with volumetric ray-marching For more resources on volumetric rendering, following are the ones I studied the most: Volumetric Rendering in 2 parts, by Chris Real-time dreamy Cloudscapes with Volumetric Raymarching, by Maxime Heckel again Volumetric Raymarching, by Xor Combining ray-marching Having a single ray-marching loop combining the two methods (solid and volumetric) can be challenging. In theory, we should stop the marching when we hit a solid, bail out of the loop, do some fancy normal calculations along with light position. We can't afford any of that, so we're going to start doing art from now on. We start from the volumetric ray-marching loop, and add the distance to the mountain: for (int i = 0; i < 100; i++) { vec3 p = rd*t; // ... float d = clouds_fog_density(p); float h = distance_to_solid(p); // ... } If h gets small enough, we can assume we hit a solid: bool solid = h < 0.001; In volumetric, the attenuation is calculated with the Beer-Lambert law. For solid, we're simply going to make it fairly high: - float attenuation = exp(-d*absorption); + float attenuation = solid ? 0.95 : exp(-d*absorption); This has the effect of making the mountain like a very dense gas. We're also going to disable the light emission from the solid (it will be handled differently down the line): - float emission = d*radiance; + float emission = solid ? 0.0 : d*radiance; The transmittance is not going to be changed when we hit a solid as we just want to accumulate light onto it: - transmittance -= weight; + if (!solid) transmittance -= weight; Finally, we have to combine the volumetric stepping (t += step_len) with the solid stepping (t += h*0.2) by choosing the safest step length, that is the minimum: - t += step_len; + t += min(h*0.2, step_len); We end up with the following: Combination of volumetric and solid ray-marching We can notice the mountain from negative space and the discrete presence of the fog, but it's definitely way too dark. So the first thing we're going to do is boost the radiance, as well as the absorption for the contrast: -const float absorption = 0.15; -const float radiance = 1.0; +const float absorption = 2.5; +const float radiance = 4.5; This will make the light actually overshoot, so we also have to replace the current gamma 2.2 correction with a cheap and simple tone mapping hack: tanh(): - O = vec4(pow(color, vec3(3.0/2.2)), 1); + O = vec4(tanh(color), 1); Tonemapping the scene The clouds and fog are much better but the mountain is still trying to act cool. So we're going to tweak it in the loop: emission += 0.1; This boosts the overall emission. While at it, since the horizon is also sadly dark, we want to blast some light into it: color += d == 0.0 ? 0.005*h : 0.0; mkbosmans from HackerNews noticed that the opposite of d==0.0 is actually d>0.0 due to the max(...,0). So we could write it more simply: color += d > 0.0 ? 0.0 : 0.005*h; When the density is null (meaning we're outside clouds and fog), an additional light is added, proportional to how far we are from any solid (the sky gets the most boost basically). More atmospheric light The mountain looks fine but I wanted a more eerie atmosphere, so I changed the attenuation: - float attenuation = solid ? 0.95 : exp(-d*absorption); + float attenuation = exp(solid ? -h*300.0 : -d*absorption); Now instead of being a hard value, the attenuation is correlated with the proximity to the solid (when getting close to it). This has nothing to with any physics formula or anything, it's more of an implementation trick which relies on the ray-marching algorithm. The effect it creates is those crack-like polygon edges on the mountain. To add more to the effect, the emission boost is tweaked into: - emission += 0.1; + float e = min(p.y - mountain_y + 1.5, 1.0); + emission += e*e * 0.1; This makes the bottom of the mountain darker quadratically: only the tip of the mountain would have the glowing cracks. Making mountains eerie Color We've been working in grayscale so far, which is a usually a sound approach to visual art in general. But we can afford a few more characters to move the scene to a decent piece of art from the 21st century. Adding the color just requires very tiny changes. First, the emission boost is going to target only the red component of the color: - emission += e*e * 0.1; float alpha = 1. - attenuation; float weight = alpha * transmittance; color += weight * emission; + color.r += weight * e*e * 0.1; And similarly, the overall addition of light into the horizon/atmosphere is going to get a redish/orange tint: - color += d > 0.0 ? 0.0 : 0.005*h; + color += (d > 0.0 ? 0.0 : 0.005*h) * vec3(3,1,0); Add a red/orange tint Last tweaks We're almost done. For the last tweak, we're going to add a cyclic panning rotation of the camera, and adjust the moving speed: p.xz *= mat2(cos(sin(T*.2)+vec4(0,11,33,0))); p.z += T*.3; Note I'm currently satisfied with the "seed" of the scene, but otherwise it would have been possible to nudge the noise in different ways. For example, remember the sin can be replaced with cos in either or both volumetric and mountain related noises. Similarly, the offsetting +T could be changed into -T for a different morphing effect. And of course the rotations can be swapped (either by changing .xz into .zx or transposing the values). Code golfing At this point, our code went through early stages of code golfing, but it still needs some work to reach perfection. Stripped out of its comments, it looks like this: // Reference code: 1278 chars (unnecessary spaces and line breaks are not counted) const float fog_y = 0.0; const float clouds_y = 3.0; const float mountain_y = -0.5; const float absorption = 2.5; const float radiance = 4.5; float noise3(vec3 p) { float v; for(float a=.01; a<1.; a+=a) p.xz *= mat2(8,6,-6,8)*.1, v += abs(dot(sin(p*.3/a + T*.3), vec3(1)))*a; return v; } float clouds_fog_density(vec3 p) { float n = noise3(p); float clouds_d = p.y-clouds_y+n; float fog_d = p.y-fog_y+n; float d = max(clouds_d, -fog_d); return max(d, 0.0); } float mountain_height_map(vec2 p) { float h = -mountain_y; for (float a=.01; a<1.; a+=a) p *= mat2(8,6,-6,8)*.1, h += abs(dot(sin(p*.6/a), vec2(1)))*a; return -h; } float distance_to_solid(vec3 p) { return p.y - mountain_height_map(p.xz); } void main() { float step_len = 0.15; float t; vec3 color; float transmittance = 1.0; vec3 rd = normalize(vec3(P+P-R,R.y)); for (int i = 0; i < 100; i++) { vec3 p = rd*t; p.xz *= mat2(cos(sin(T*.2)+vec4(0,11,33,0))); p.z += T*.3; float d = clouds_fog_density(p); float h = distance_to_solid(p); bool solid = h < 0.001; d *= step_len; float attenuation = exp(solid ? -h*300.0 : -d*absorption); float emission = solid ? 0.0 : d*radiance; float e = min(p.y - mountain_y + 1.5, 1.0); float alpha = 1. - attenuation; float weight = alpha * transmittance; color += weight * emission; color.r += weight * e*e * 0.1; color += (d > 0.0 ? 0.0 : 0.005*h) * vec3(3,1,0); if (!solid) transmittance -= weight; t += min(h*0.2, step_len); step_len *= 1.015; } O = vec4(tanh(color), 1); } The first thing we're going to do is notice that both the mountain, clouds, and fog use the exact same loop. Factoring them out and inlining the whole thing in the main function is the obvious move: // 922 chars const float fog_y = 0.0; const float clouds_y = 3.0; const float mountain_y = -0.5; const float absorption = 2.5; const float radiance = 4.5; void main() { float step_len = 0.15; float t; vec3 color; float transmittance = 1.0; vec3 rd = normalize(vec3(P+P-R,R.y)); for (int i = 0; i < 100; i++) { vec3 p = rd*t; p.xz *= mat2(cos(sin(T*.2)+vec4(0,11,33,0))); p.z += T*.3; float d = p.y; float h = p.y-mountain_y; for (float a=.01; a<1.; a+=a) p.xz *= mat2(8,6,-6,8)*.1, d += abs(dot(sin(p*.3/a + T*.3), vec3(1)))*a, h += abs(dot(sin(p.xz*.6/a), vec2(1)))*a; d = max(max(d-clouds_y, -(d-fog_y)), 0.0); bool solid = h < 0.001; d *= step_len; float attenuation = exp(solid ? -h*300.0 : -d*absorption); float emission = solid ? 0.0 : d*radiance; float e = min(p.y - mountain_y + 1.5, 1.0); float alpha = 1. - attenuation; float weight = alpha * transmittance; color += weight * emission; color.r += weight * e*e * 0.1; color += (d > 0.0 ? 0.0 : 0.005*h) * vec3(3,1,0); if (!solid) transmittance -= weight; t += min(h*0.2, step_len); step_len *= 1.015; } O = vec4(tanh(color), 1); } Next, we are going to do the following changes: Rename every variable to single letter or inline them whenever possible Inline all constants Remove any explicit zero initialization Use float instead of int for the iterator and bool for the solid flag Pack all float and vec3 declarations together Simplify numbers: 1e2 instead of 100.0, 3. instead of 3.0, etc. vec*() constructor act like cast, so you can pass down integers Instead of *x, /(1/x) is sometimes shorter (for example /.4 instead of *2.5) (thanks coyote) // 491 chars void main() { vec3 c, p; for (float i, a, g=1., t, h, d, w, k=.15, x, e; i < 1e2; i++) { p = normalize(vec3(P+P-R,R.y))*t; p.xz *= mat2(cos(sin(T*.2)+vec4(0,11,33,0))); p.z += T*.3; d = p.y; h = p.y+.5; for (a=.01; a<1.; a+=a) p.xz *= mat2(8,6,-6,8)*.1, d += abs(dot(sin(p*.3/a + T*.3), vec3(1)))*a, h += abs(dot(sin(p.xz*.6/a), vec2(1)))*a; d = max(max(d-3., -d), 0.); x = h < .001 ? 0. : 1.; d *= k; e = min(p.y+2., 1.); w = g * (1. - exp(x==0. ? -h*3e2 : -d/.4)); c += w * x*d*4.5; c.r += w * e*e * .1; c += (d > 0. ? .0 : h/2e2) * vec3(3,1,0); g -= w * x; t += min(h*.2, k); k /= .985; } O = vec4(tanh(c), 1); } Last pass of tricks: Merge and unroll more expressions together Use alternative forms for vec*(1) Rely on mathematical equivalences such as e^{-x}=1/e^x Some symbol names can be reused (see a) Notice how the rotation matrix coefficients (0,11,33,0) are close to the red factors (3,1,0)? That's right, we can factor that out into a shared constant K. Iterate i within the condition We're going to inline k*=1.015 inside the min(): this is not equivalent, but in practice it makes no difference The first 5 instructions of the main loop go into the initialization placeholder of the inner for, and all the others go into the iteration placeholder of the outer for, so that we can remove all {} Declare a z to be used instead of 0. since we have a bunch of them (thanks coyote) The x = h < .001 ? 0. : 1. can also be obtained progressively through some increment trick (thanks coyote) I'm also reordering a bit some instructions for clarity 🙃 // 448 chars void main() { vec3 c,p,K=vec3(3,1,0); for(float z,i,a,g=1.,t,h,d,w,k=.15; i++<1e2; d = max(max(d-3.,-d),a=z)*k, w = g-g/exp(h>.001?a++,d/.4:h*3e2), g -= a*=w, c += a*d*4.5+(d>z?z:h/2e2)*K, a = min(p.y+2.,1.), c.r += w*a*a*.1, t += min(h*.2,k/=.985)) for(p=normalize(vec3(P+P-R,R.y))*t, p.xz*=mat2(cos(sin(T*.2)+K.zyxz*11.)), p.z+=T*.3, d=p.y,h=d+.5,a=.01;a<1.;a+=a) p.xz *= mat2(8,6,-6,8)*.1, d += abs(dot(sin((p/a+T)*.3),p-p+a)), h += abs(dot(sin(p.xz*.6/a),P-P+a)); O = vec4(tanh(c),1); } And here we are. All we have to do now is remove all unnecessary spaces and line breaks to obtain the final version. I'll leave you here with this readable version. Golfer by Courtney Cook (Unsplash) Forewords I'm definitely breaking the magic of that artwork by explaining everything in detail here. But it should be replaced with an appreciation for how much concepts, math, and art can be packed in so little space. Maybe this is possible because they fundamentally overlap? Nevertheless, writing such a piece was extremely refreshing and liberating. As a developer, we're so used to navigate through mountains of abstractions, dealing with interoperability issues, and pissing glue code like robots. Here, even though GLSL is a very crude language, I can't stop but being in awe by how much beauty we can produce with a standalone shader. It's just... Pure code and math, and I just love it.

29th Sep 2025 1 votes
The current technology is not ready for proper blending

The idea that we must always linearize sRGB gradients or work in a perceptually uniform colorspace is starting to be accepted universally. But is it that simple? When I learned about the subject, it felt like being handed a hammer and using it everywhere. The reality is a bit more nuanced. In this article we will see when to use which, how to use them, and we will then see why the situation is more dire than it looks. Code snippets Before we start, since we are going to use GLSL as language, following are the reference functions we will use for the rest of the article. vec3 s2l(vec3 c) { // sRGB to linear return mix(c/12.92, pow((max(c,0.0)+0.055)/1.055,vec3(2.4)), step(vec3(0.04045),c)); } vec3 l2s(vec3 c) { // linear to sRGB return mix(c*12.92, 1.055*pow(max(c,0.0),vec3(1./2.4))-0.055, step(vec3(0.0031308),c)); } vec3 l2oklab(vec3 rgb) { // linear to OkLab const mat3 rgb2lms = mat3( +0.4122214708, +0.2119034982, +0.0883024619, +0.5363325363, +0.6806995451, +0.2817188376, +0.0514459929, +0.1073969566, +0.6299787005); const mat3 lms2lab = mat3( +0.2104542553, +1.9779984951, +0.0259040371, +0.7936177850, -2.4285922050, +0.7827717662, -0.0040720468, +0.4505937099, -0.8086757660); vec3 lms = rgb2lms * rgb; return lms2lab * pow(lms, vec3(1.0/3.0)); } vec3 oklab2l(vec3 lab) { // OkLab to linear const mat3 lab2lms = mat3( +1.0000000000, +1.0000000000, +1.0000000000, +0.3963377774, -0.1055613458, -0.0894841775, +0.2158037573, -0.0638541728, -1.2914855480); const mat3 lms2rgb = mat3( +4.0767416621, -1.2684380046, -0.0041960863, -3.3077115913, +2.6097574011, -0.7034186147, +0.2309699292, -0.3413193965, +1.7076147010); vec3 lms = lab2lms * lab; return lms2rgb * (lms*lms*lms); } Also, the output of the pipeline will be expected to be sRGB all the time. Color gradients To illustrate how sRGB, linear RGB and OkLab respectively look like, let's interpolate between two colors with each one of them: Color gradients from top to bottom: sRGB, linear, OkLab The 3 stripes were generated like this: vec3 o_srgb = mix(c0, c1, v); vec3 o_linear = l2s(mix(s2l(c0), s2l(c1), v)); vec3 o_oklab = l2s(oklab2l(mix(l2oklab(s2l(c0)), l2oklab(s2l(c1)), v))); Where v is simply the x coordinate between 0 and 1, c0 the left color, and c1 the right one. Note The input colors are considered to be sRGB in input. Similarly, we always make sure to output sRGB at the end (with l2s()) because that's what the pipeline expects. Key takeaways: sRGB is not acceptable because of this grayish/brownish zone, which is also perceived darker. In various situations this creates undesirable muddy midtones. In general, it's wrong and broken to do that. Linear is better from a purely physical point of view as it models the mixing of light energy properly. But from a color perception point of view it's not ideal, for example here it has this transition into pinkish which might not be desirable. The last one is using OkLab for a perceptually uniform gradient; it is the one providing the best result for our human perception, at a certain performance cost. The general consensus is as follow: if you need a color transition within a shape or texture, or some sort of color map, OkLab is the best tool, while linear is cheap, physically correct, and usually acceptable visually. But what about monochrome gradients? Things are not as obvious as they seem when we work in monochrome. If instead of red and blue we pick black and white, this is what happens: Grayscale gradients from top to bottom: sRGB, linear, OkLab Suddenly this tells a whole different story. sRGB becomes perfectly acceptable, while linear favors way too much the lightness, and OkLab remains the best. The linear gradient felt acceptable before, but now it is highly questionable. Just to be clear, the linear strip is linear, you can see it as linear energy or casually said "wattage", to which our perception does respond non-linearly. At this point one may even argue that sRGB looks best. So what can we do about this? First of all, we always need to question what we are trying to achieve, and fortunately sometimes we can take a few shortcuts. For example, let's say we want to depict a heat map in black and white. In my previous article I had to display 2D noise, so I wanted the observer to experience a linear perception of the "height" of the noise. In this case, working in sRGB (that is, doing zero effort with regards to perception) is actually a better call than mixing between black and white in linear space: Noise 2D with height as sRGB (left) or linear (right) Here we are comparing these two: vec3 o_srgb = vec3(v); // equivalent to mix(black, white, v) vec3 o_linear = l2s(vec3(v)); // equivalent to l2s(mix(black, white, v)) Note We removed the mix out of the formulas because black=vec3(0) and white=vec3(1), which have the same value when uncompressed to linear space. To do things right we may want to use OkLab but this feels overkill since this is just a straightforward monochromatic signal. Fortunately, the perceptual lightness can be fairly simple to model. With monochromatic input, OkLab uses L=x³, which is basically equivalent to do a gamma correction with γ=3. This means that we can simplify the OkLab interpolation we used before to the very simple: vec3 o_oklab = l2s(vec3(v*v*v)); // equivalent to l2s(oklab2l(vec3(v,0,0))) Noise 2D with height remapped to human lightness perception Doing this simple operation is exactly equivalent to interpolating between black and white in OkLab space, except it's just 2 extra multiplications. We still need to be extra careful if we want to swap the black and white. v needs to be swapped before the gamma encoding, and that means before the sRGB gamma encoding as well: Top to bottom: srgb(1-v³) (incorrect), 1-srgb(v³) (incorrect), srgb((1-v)³) One extra trick: combining gammas sRGB has a curve that closely approximates a gamma correction γ=2.2. So sometimes, instead of using l2s(rgb), we may prefer to use the simpler pow(rgb,vec3(1.0/2.2)). It means we could replace l2s(vec3(v*v*v)) with the following to merge the two operations: vec3 o_oklab = vec3(pow(v, 3.0/2.2)); // combination of v³ and gamma 2.2 (sRGB-like) encoding And the white-to-black version: vec3 o_oklab = vec3(pow(1.0-v, 3.0/2.2)); Warning Whenever you use pow, make sure your input is positive. Adding a max(v,0.0) for safety might be reasonable in certain cases. The difference between a proper sRGB conversion and the combined gamma is pretty small: Top: srgb(v³), bottom: v^(3/2.2) Alpha blending and pre-multiplication Sometimes, instead of fading colors into each others, we need to compose shapes, textures, masks, ... This need for compositing, or blending, arises when the pipelines are separated, meaning we are not working in the same fragment shader for everything. For example, we could have a shape generated in a fragment, which we need to overlay onto a surface. That shape might have some non-binary transparency, either for anti-aliasing purposes, a blur, or similar. An example of a shape partially transparent If that shape were to be blend onto another colored surface, we would like to have the same effect as the gradient earlier. For well-known reasons, it is likely that this shape would end up as a pre-multiplied color, which would be blend onto one or more layers. If what I just said is confusing, I recommend checking out this good article on alpha compositing from Bartosz Ciechanowski. The literature is quite extensive on the subject so I will assume familiarity with it. Of course, if we are to do things right, the blending would have to happen in linear space. Do not consider sRGB blending in alpha blending, it's an even more terrible idea than before because of the bilinear filtering, transforms or mipmaps that can happen between the pre-multiplication and the blending itself. But that means we would end up with the linear gradient shortcomings from earlier, wouldn't we? And this is where things get ugly. Look at the difference between a linear and an OkLab blending, in black and white: Blending of a blurry white circle onto black, left is linear, right is OkLab If we invert the colors: Blending of a blurry black circle onto white, left is linear, right is OkLab We have the exact same problem as earlier, but seeing it with an actual blending of shapes makes the problem particularly striking. The white and black OkLab circles look the same size (because they are), and they don't have the unfortunate "bobbing" effect of the linear version (on the white onto black). Warning The OkLab blending is done with pre-multiplied Lab colors. It is important not to pre-multiply linear values which are then converted to OkLab, this will give very unexpected results. The problem is, it is very unlikely that your whole graphics pipeline would switch to OkLab for every textures and buffers. And since most of the time the pipelines are built for more than just black and white, the cube hack suggested earlier has a very limited scope. In the case of shape blending, it is almost certain that the whole pipeline would not be contained in a single shader where you can just mix in OkLab. You're probably thinking of using sRGB, but in a blending pipeline this really is a terrible idea. Final words In practice, neither sRGB nor pure linear blending give good results, and using OkLab is not always an option. And unfortunately, I don't have a good answer to this whole situation. My next article is about anti-aliasing where this problem also exists, and I must admit this whole ordeal puts me in quite some distress; I had to talk about this issue first.

18th Jul 2025 1 votes

More in programming

Abusing ID3 chapters to turn videos into glanceable podcasts

I listen to a lot of podcasts, and I like how they fit around other tasks. I press play, lock my phone, and put it down. I’m free to wash the dishes, fold the laundry, or shop for groceries. Unfortunately, more and more information is only published as a video. Technical talks, conference sessions, video essays – they don’t work in an audio-only podcast app. I could convert these videos to MP3 files, but that breaks down the moment a video isn’t pure spoken word. If a speaker says, “Look at this slide” or holds up a diagram, an audio-only file leaves me stranded. I don’t want to give up the podcast player I like, nor stare at a screen for an hour – but I do want the information in these videos. To solve this, I’m abusing my podcast player’s chapter support. This gives me the best of both worlds: I can listen to a video as audio-first, and glance at my lock screen if I need a moment of visual context. The idea: Chapters every few seconds MP3 files can have ID3 metadata, and ID3 metadata can include chapters. A chapter covers a particular time range, and it can have an associated title, description, and cover art. My podcast app of choice is Overcast, which can’t play videos, but it does have robust chapter support. I can jump between chapters, navigate a table of contents, and see per-chapter cover art. To get videos into Overcast, I’m creating MP3 files with a new chapter every few seconds, and the per-chapter cover art is a corresponding frame from the video. As I play the file, I get a slow, stop-motion-like rendition of the original video. If my phone is locked, I can glance at my lock screen and see the current frame in the Now Playing screen. Overcast is developed by Marco Arment, and I got this idea from Forecast, his app for adding chapters to podcasts. In particular, I was struck by its ability to create chapters that don’t display in the chapter list – ideal if I don’t want a table of contents with hundreds of entries. As I was developing my script, I compared my output to the output from Forecast to ensure I was creating the chapters correctly. The code: FFmpeg and Mutagen There are three steps in this process: Convert a video file to an MP3 Extract images from the video at a fixed interval Insert the images as hidden chapters in the MP3 file Let’s go through each in turn. 1. Convert a video file to an MP3 Converting a video file to an MP3 is a single FFmpeg command: ffmpeg -i video.mp4 audio.mp3 This is consistently the slowest step of the process, and I do wonder if I could use different settings or an alternative encoder to make it go faster – but it’s not slow enough to be worth further investigation. 2. Extract images from the video at a fixed interval Extracting images from a video needs a more complicated FFmpeg command: ffmpeg -i video.mp4 \ -vf 'fps=1/5,scale=iw*sar:ih,scale=min(iw\,945):min(ih\,945):force_original_aspect_ratio=decrease' \ thumbnail_%04d.jpg This extracts an image every 5 seconds, downscales any image larger than 945 pixels square (while preserving the original aspect ratio), and saves the results as sequentially numbered JPEG images (thumbnail_0001.png, thumbnail_0002.png, and so on). The key is the -vf flag, which defines two FFmpeg filters: The fps filter selects one frame every 5 seconds (fps=1/5). The first scale filter scales the width based on the sample aspect ratio (scale=iw*sar:ih). Without this filter, frames can be stretched and distorted. The second scale filter scales the input video, preserving the original aspect ratio (force_original_aspect_ratio=decrease), and ensuring the output images fit within 945×945px or the size of the input video, whichever is smaller. My limit is 945 pixels because that’s the largest size that cover art is shown on my iPhone. This filter still isn’t completely correct – it sometimes creates images from portrait videos that are smaller than I’m expecting – but it’s good enough. These are only thumbnails for glancing at, and if I want to change it later, I can always do the image resizing outside FFmpeg. 3. Insert the images as hidden chapters in the MP3 file Inserting the chapters into the MP3 file is more complicated. Although FFmpeg has basic support for ID3 metadata, as far as I know, it can’t insert chapters with per-chapter artwork. Instead, I’m going to reach for Python and the Mutagen library. Here’s the code to add a chapter to an MP3 file: from mutagen.id3 import APIC, CHAP, ID3, PictureType audio = ID3("audio.mp3") with open("thumbnail_0001.jpg", "rb") as f: img_data = f.read() image_frame = APIC(mime="image/jpeg", type=PictureType.OTHER, data=img_data) chapter_frame = CHAP( element_id="chp1", start_time=0, end_time=5 * 1000, sub_frames=[image_frame] ) audio.add(chapter_frame) audio.save() This creates a single chapter that lasts the first 5 seconds (0 to 5000 milliseconds), and the per-chapter cover art is thumbnail_0001.jpg. If we ran this in a loop, we could add images for every 5 second slice of the original video. This code is inserting two frames into the ID3 metadata: The CHAP (chapter) frame contains the timing information, and it can have subframes for metadata like title, chapter art, or associated URL. The APIC (attached picture) subframe contains information about a picture, which can either be a blob of image data or a URL to an image on the web. Normally, you’d also insert a CTOC frame which defines a table of contents, but I don’t want a TOC with hundreds of 5-second chapters, so I’m deliberately not doing this here. This is allowed by the ID3 spec – you’re not required to insert a CTOC frame if you’re using chapters, and you can have chapters that aren’t listed in your table of contents. To work out which frames I needed, I used Forecast to create some chapters by hand, and I inspected their frames. In particular, loading an MP3 and calling Mutagen’s pprint() method shows a human-readable list of frames, and then I could drill into the individual fields: from mutagen.id3 import ID3 audio = ID3("audio.mp3") print(audio.pprint()) I wrapped all this code in a project called glancecast, which allows you to convert a video file with a single command, with optional flags to set the frame length and chapter art size: $ python3 glancecast.py interesting_talk.mp4 interesting_talk.mp3 The process takes a minute or so to complete, most of which is spent transcoding the video file to MP3. The resulting MP3s are usually 40 to 50 MB in size, which is very reasonable. The outcome: How it looks in practice Here’s what one of these “glanceable” podcasts looks like in Overcast and on my lock screen: Maggie Appleton presented this talk over two years ago and it’s been on my “talks to watch” list ever since. Once I put it in Overcast? I listened to it in less than a day. It’s not a lot of extra information, but enough that I can quickly glance down and get the gist of what a speaker is saying. Both views update with a new frame every few seconds, or I can put my phone in my pocket and ignore the screen. I’ve used this approach for half a dozen videos so far, and I’m happy with the results. I expect to keep using it, because I have a long queue of videos I’ve been meaning to watch. If you’d like to try this, check out glancecast for the full code and instructions. [If the formatting of this post looks odd in your feed reader, visit the original article]

23 hours ago 1 votes
AI Isn’t Replacing Open Source

Andrew Baker, the current Group CIO at Capitec Bank wrote an interesting piece on AI and open source, and how these tools that generate code according to one’s specification may replace the general reliance on open source implementations done by contributors around the world. I’d really recommend reading it. I have great admiration and respectContinue reading "AI Isn’t Replacing Open Source"

yesterday 1 votes
6-7 loops we use everyday to make PostHog self-driving

I've mostly given up keeping up with agent trends. Every few months, I ignore all of it and ask what I'm actually getting use out of. Three things…

yesterday 1 votes
Confessions of an Unrepentant Slop Snob

A framework for thinking about when AI involvement is additive or a violation

2 days ago 1 votes
Planning with Agents: Divided Worlds, Boundary Objects, and Thicker Interfaces

Why we need richer, thicker interfaces and better boundary objects for collaborative planning with agents

2 days ago 1 votes
📚 BoredReading

You seem to be enjoying this.

Join free to unlock everything.

Create free account

Already have an account? Sign in