Gasmel :
Hi Guys, Im thinking of it what is the difference Between Pixel Shader And Texture Shader??
There is no such thing as a "texture shader" in the sense that it is not a part of the graphics pipeline. Rather, the pixel shader may sample textures that have been manipulated by the texture mapping units to determine pixel intensity values.
The graphics pipeline goes as follows:
primitive data + vertex data -> tessellation shader (optional) -> vertex shader -> geometry shader (optional) -> pixel shader -> rasterization
The pixel shader is responsible for generating the colour data of each pixel. It may perform this entirely algorithmically, it may interpolate a texture, or in most cases a combination of both.
Each stage of the...