I've read some tutorials regarding Cg, yet one thing is not quite clear to me. What exactly is the difference between vertex and fragment shaders? And for what situations is one better suited than the other?
|
|
duplicate of this one. What is Vertex and Pixel shaders? note that fragment shader is the same as pixel shader but a main difference is, which i dunno whether its covered there: vertex shader can manipulate the attributes of vertices. which are the corner points of your polygons. the fragment shader on the other hand takes care of how the pixel between them look. they are interpolated between the defined vertices following specific rules. so if you want your polygon for example to be completely red, you would define all vertices red. if you want some stuff like lightning on it or have a gradient between them, you have to do that in the fragment shader. better speaking: the vertex shader is part of the early steps up in the graphic pipeline. somewhere between model coordinate transformation and polygon clipping i think. some place where nothing is really done yet. the fragment/pixel shader is part of the rasterisation, where the image is calcuated and just the "gaps" are filled, so its... "coloured" just read about the graphics pipeline here and everything will reveal itself: http://en.wikipedia.org/wiki/Graphics_pipeline |
|||
|
Vertex shader is done on every vertex, while fragment shader is done on every pixel. The fragment shader is applied after vertex shader. More about the shaders GPU pipeline link text |
||||
|
|
|
||||
|
|
|
In rendering images via 3D hardware you typically have a mesh (point, polygons, lines) these are defined by vertices. To manipulate vertices individually typically for motions in a model or waves in an ocean you can use vertex shaders. These vertices can have static colour or colour assigned by textures, to manipulate vertex colours you use fragment shaders. At the end of the pipeline when the view goes to screen you can also use fragment shaders. |
|||
|
|
