- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
7 Cards in this Set
- Front
- Back
|
gl_Position?
|
Vertex shader mandatory output variable.
Represent a transformed position of the current vertex. (for example, the vertex in the camera frame) |
|
gl_FragColor
|
Fragment shader special output variable. Either gl_FragColor or gl_FragData must be written
|
|
gl_Vertex
|
Vertex coordinates (x,y,z,w) in the global frame.
|
|
gl_MultiTexCoordX?
|
Vertex shader input variable. Coordinates of the texture unit X
|
|
gl_TexCoord[N] ?
|
Interpolated texture coordinates of texture N for current pixel (I'm not sure)
|
|
uniform variable?
|
shader read only input variable which value is set in the openGL program.
|
|
sampler1D,2D,3D?
|
qualifier to declare a texture handler.
|