• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/7

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

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.