
Each Shader Unit is basically a very simple CPU, but a modern video card may contain thousands of these things (an AMD Radeon HD6990 contains over 3000). On the hardware side, Pixel Shaders are executed on ' Shader Units', small processors on your GPU. The Pixel Shader has access to all texture data, and can use them to do interesting things such as blending two textures (to create a 'dirty' look), using a texture as a bump map (to simulate a relief), or to simulate reflections. The Pixel Shader is a small program that takes these parameters and uses them to calculate the final colour as it is displayed on the screen. These include base colour, texture coordinates, lighting information, etc. These pixels do not have their final colour yet, but the do have a bunch of parameters associated with them. During rasterisation, each triangle is converted into pixels. Pixel Shaders are used as an alternative to the standard texturing phase.

Rasterising (Converting the vector graphics (triangles, etc) into raster graphics (pixels)).Clipping (Removing anything outside the field of view).Projection ('Squashing' the 3D world into a 2D plane).Transformation (Moving, rotating and scaling all the objects in the scene).The 'standard' stages of a 3D rendering pipeline are as follows (somewhat simplified):

Wikipedia provides a nice list of Pixel Shader versions, the version of Direct3D you need, and the types of graphics cards that work with them. You will need at least Windows Vista in order to play a game that uses Direct3D 10 or 11. The only exceptions are Direct3D 10 and later, which will not run on Windows XP or earlier. Normally you don't have to worry about this, every game that uses Direct3D will install the correct version for you when you install the game. For example, Pixel Shader 4.0 requires at least Direct3D 10. You need to have the correct version of Direct3D (or OpenGL) installed in order to use the shaders. Pixel Shader 3.0) is usually released for each new version of DirectX (more accurately, Direct3D). A new version of the pixel shader specification (e.g. Each new version provides more capabilities, so an older video card will not run newer shaders. Pixel shaders are executed on your video card, so your video card needs to support them. The most common use for pixel shaders is 'shading', approximation to real world lighting.

Pixel shaders are tiny programs that can do operations on a single pixel on the screen, as opposed to geometry shaders and vertex shaders which work on the geometrical primitives (triangles) that make up everything you see on the screen.
