[ Vertex Shaders, Fragment Shaders ] Vertex Shaders A vertex shader is a shading program designed to replace the fixed vertex processing stage of the pipeline. Vertex Shader는 파이프라인의 고정된 vertex processing 단계를 대체하도록 설계된 셰이딩 프로그램입니다.It will be executed on every vertex sent into the pipeline, and is responsible for producing all the information needed by later stages in the pipeline; minimally, it m..