@vivekgalatage: One of the best explanations on shaders by @DanHollick https://makingsoftware.com/chapters/shaders…
Summary
A tweet sharing a highly recommended explanation of shaders by Dan Hollick on Making Software.
View Cached Full Text
Cached at: 08/16/26, 05:57 AM
One of the best explanations on shaders by @DanHollick
https://t.co/tnN2jxqwGD https://t.co/xO01kXB9ef
Similar Articles
@matthen2: how shaders work- using Excel =LET(x,(COLUMN()-24)/15,y,(ROW()-15)/15,SIN(SQRT(x*x+y*y)*10-t)) Each cell (pixel) comput…
Explains how shaders work using an Excel formula that computes color per cell, illustrating GPU parallelism.
@vivekgalatage: http://gameprogrammingpatterns.com/contents.html This amazing resource discusses many foundations, from "how computer g…
A tweet sharing an online resource that covers game programming patterns, including computer graphics and common design patterns used in game engines.
@vivekgalatage: GPU Programming Fundamentals https://youtu.be/Cl2B_hmg4gA William Brandon, a performance engineer at Anthropic, outline…
A summary of William Brandon's (performance engineer at Anthropic) GPU programming fundamentals lecture, emphasizing that understanding the streaming multiprocessor (SM) structure of GPU hardware is key to predicting performance, rather than starting solely from the software abstraction of thread blocks/threads.
@YoheiNishitsuji: #TweetGLSL float i,e,R,s;vec3 q,p,d=vec3((FC.xy-.5*r)/r.y,.6);for(q.z--;i++<97.;i>86.){o.rgb+=hsv(.08,-e,e/5e1)+.003;p=q…
A Twitter post sharing a compact GLSL shader program (fractal/raymarching implementation) by user @YoheiNishitsuji
@mervenoyann: one of my absolute favorite accounts on this platform for a good reason
A tweet highlighting advanced HTML Canvas challenges and a comparison of GLM 5.1 and GLM 5.2, with demos including ink diffusion, energy-blade duel, and more, all using pure canvas without libraries.