I am in the process of learning OpenGL ES for Android from the following website:
http://www.learnopengles.com/android-lesson-one-getting-started/
Can someone please explain to me what shaders are. I looked around on the web, but the explanations are very confusing. What is a vertex shader compared to a fragment shader?
Thanks!
From Wikipedia:
Whereas:
Essentially, pixel (fragment) shaders operate on what you see, a pixel. Vertex shaders operate on the vertex information present in the code. Vertex shaders are used earlier in the graphics pipeline.