Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
possible duplicate of What is Vertex and Pixel shaders? – Amro Mar 6 '11 at 13:50

4 Answers

up vote 20 down vote accepted

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

share|improve this answer
Typically this should be comment under the question rather than an answer, mind moving it. – whatnick Dec 12 '10 at 10:51
what should be a comment? – The Surrican Dec 12 '10 at 10:53
Thank you, very clear and concise explanation. I think I get it now. – adivasile Dec 12 '10 at 11:04

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

share|improve this answer

Nvidia CG Book:

Vertex transformation is the first processing stage in the graphics hardware pipeline. Vertex transformation performs a sequence of math operations on each vertex. These operations include transforming the vertex position into a screen position for use by the rasterizer, generating texture coordinates for texturing, and lighting the vertex to determine its color.

The results of rasterization are a set of pixel locations as well as a set of fragments. There is no relationship between the number of vertices a primitive has and the number of fragments that are generated when it is rasterized. For example, a triangle made up of just three vertices could take up the entire screen, and therefore generate millions of fragments!

Earlier, we told you to think of a fragment as a pixel if you did not know precisely what a fragment was. At this point, however, the distinction between a fragment and a pixel becomes important. The term pixel is short for "picture element." A pixel represents the contents of the frame buffer at a specific location, such as the color, depth, and any other values associated with that location. A fragment is the state required potentially to update a particular pixel.

The term "fragment" is used because rasterization breaks up each geometric primitive, such as a triangle, into pixel-sized fragments for each pixel that the primitive covers. A fragment has an associated pixel location, a depth value, and a set of interpolated parameters such as a color, a secondary (specular) color, and one or more texture coordinate sets. These various interpolated parameters are derived from the transformed vertices that make up the particular geometric primitive used to generate the fragments. You can think of a fragment as a "potential pixel." If a fragment passes the various rasterization tests (in the raster operations stage, which is described shortly), the fragment updates a pixel in the frame buffer.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.