A shader is type of a computer program (a set of instructions) that runs on the GPU.

<aside> 💡

Origin of name: initially designed to ‘shade’ things- that is, calculate/apply lighting effects in computer graphics, which is at the most basic level variance of bright and dark areas over a surface. Shaders have since evolved to perform a wide range of tasks, such as simulating physics, rendering post-processing effects, generating procedural content, and accelerating video playback. Despite this expanded functionality, the name persists as a nod to their origins.

</aside>

<aside> 💡 GameMaker is an interesting example as it allows either GLSL, GLSL ES, or HLSL, and recommends GLSL ES for compatibility across the most range of target platforms.

</aside>

What is a GPU (Graphics Processing Unit)?

<aside> 💡

Why this is important: consider that for display resolutions ranging from full HD 1920x1080 monitors to a typical ‘4k’ (UHD 3840 x 2160) screen, that’s 2-8 million pixels (aka places on your screen that need rendering calculations).

<aside> 💡 CPUs: Better for complex, sequential instructions.

GPUs: Excel at [relatively] simple, parallel instructions.

MythBusters: Example of CPU vs. GPU rendering/execution. Skip to 1:20 to see a slow-motion simulation of how the ‘GPU’ renders/paints/colours pixels.

MythBusters: Example of CPU vs. GPU rendering/execution. Skip to 1:20 to see a slow-motion simulation of how the ‘GPU’ renders/paints/colours pixels.

Shader Types

There are different types of shaders, where each type handles a specific stage of the graphics pipeline, optimizing tasks for rendering images efficiently. The purpose of having a pipeline with stages is so that complex rendering tasks can be broken down into smaller, manageable steps, each handled by a specific shader type. Below are some of the most common types: