From 9da0ac9d5e23d4f5cfab46621924107c2d97cdaa Mon Sep 17 00:00:00 2001 From: light7734 Date: Mon, 2 Jun 2025 15:49:47 +0330 Subject: [PATCH] wip --- src/routes/articles/the-graphics-pipeline/+page.svx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/routes/articles/the-graphics-pipeline/+page.svx b/src/routes/articles/the-graphics-pipeline/+page.svx index 20eab7a..72ec776 100644 --- a/src/routes/articles/the-graphics-pipeline/+page.svx +++ b/src/routes/articles/the-graphics-pipeline/+page.svx @@ -554,13 +554,15 @@ Let's recap! -Vertex Data -> +Prepared Vertex Data -> -Input Assembly -> +Input Assembly turns Vertex Data into digestable structures for the Vertex Shader -> -Vertex Shader -> +Vertex Shader is invoked per vertex for applying transformations via some clever linear algebra -> -Geometry & Tessellation Shaders -> +Geometry & Tessellation Shaders expand the geometry on-the-fly and may apply more transformations -> + +... Rasterizer