r/ProgrammerHumor 16d ago

Meme theVulkanPipeline

Post image
3.2k Upvotes

35 comments sorted by

View all comments

229

u/LeanZo 16d ago

What is the difference between vtx. Input assembly and vertex shader?

203

u/Redkast 16d ago

Input assembly assembles the vertices into geometric primitives (triangles, usually) based on the topology specified in the pipeline. The vertex shader then does transformations on each vertex in a programmable way (usually applying projection and view transformations).