GLSL: Difference between revisions
Line 4: | Line 4: | ||
==Pipeline== | ==Pipeline== | ||
===Vertex Shader=== | ===Vertex Shader=== | ||
In the vertex shader, your inputs are a model matrix, view matrix, and projection matrix uniforms as well as one vertex position in local coordinates. | In the vertex shader, your inputs are a model matrix, view matrix, and projection matrix uniforms as well as one vertex position in local coordinates. | ||
Line 15: | Line 17: | ||
These values can be passed to the following stages as <code>varying</code>'s. | These values can be passed to the following stages as <code>varying</code>'s. | ||
<code>varying</code>'s are linearly interpolated using barycentric coordinates. | <code>varying</code>'s are linearly interpolated using barycentric coordinates. | ||
===Tesselation Shader=== | |||
This is an optional shader which can be used to dynamically upsample your triangles using subdivision. | |||
It typically runs once per triangle. | |||
===Geometry Shader=== | ===Geometry Shader=== | ||
This is an optional shader which can be used to generate or remove triangles. | |||
It typically runs once per point, line, or triangle. | |||
The outputs are typically new vertices and new triangles. | |||
===Fragment Shader=== | ===Fragment Shader=== | ||
This shader outputs pixel color values based on information stored in each triangle. | |||
It runs once per pixel. |
Revision as of 19:27, 14 September 2020
OpenGL Shading Language (GLSL) is the shader language used in OpenGL and WebGL.
Usage
Pipeline
Vertex Shader
In the vertex shader, your inputs are a model matrix, view matrix, and projection matrix uniforms as well as one vertex position in local coordinates.
There may also be attributes
which are per-vertex values such as UVs.
Your vertex shader program is run once per each vertex of a mesh.
The goal of the vertex shader is to output a position in screen coordinates.
Typically this is done by multiplying with the model matrix to get world coordinates, then the view matrix to get camera coordinates, and finally the projection matrix to get screen coordinates.
You can also do any other per-vertex calculations in this stages.
These values can be passed to the following stages as varying
's.
varying
's are linearly interpolated using barycentric coordinates.
Tesselation Shader
This is an optional shader which can be used to dynamically upsample your triangles using subdivision. It typically runs once per triangle.
Geometry Shader
This is an optional shader which can be used to generate or remove triangles.
It typically runs once per point, line, or triangle.
The outputs are typically new vertices and new triangles.
Fragment Shader
This shader outputs pixel color values based on information stored in each triangle.
It runs once per pixel.