Programmable Pipelines Flashcards
1
Q
What is a programmable pipeline?
A
Allows the user to implement some of the Graphics Pipeline for themselves,
Usually done by providing a vertex and fragment shader
2
Q
What are some advantages of a non-programmable pipeline?
A
Simple to use
Fine for many purposes
Easy to get started
3
Q
What are some disadvantages of a non-programmable pipeline?
A
Deprecated
New algorithms or techniques cant be added
4
Q
What are some advantages of a programmable pipeline?
A
Provides flexibility
New stuff can be added all the time
5
Q
What are some disadvantages of a programmable pipeline?
A
Harder for beginners