Lines Matching defs:texel

6749  *  - prepare a program object that will read texel from "source" image at given
6756 * - verify that texel values in "destination" texture match those in
7166 /* Value of texel */
7678 /* Value of texel */
7679 GLubyte texel[4] = { 0, 0, 0, 0xaa };
7690 texel[2] = static_cast<GLubyte>(layer);
7696 texel[1] = static_cast<GLubyte>(y);
7701 texel[0] = static_cast<GLubyte>(x);
7705 texture_data[texel_offset + component] = texel[component];
7884 * * load texel from "incomplete_source" and store its value to
7886 * * load texel from "complete_source" and store its value to
7929 * texel value.
8511 * @param texel Storage of texel
8512 * @param x_coordinate X coordiante of texel
8513 * @param y_coordinate Y coordinate of texel
8516 void SetTexel(GLubyte texel[4], GLubyte x_coordinate, GLubyte y_coordinate, GLubyte magic_number)
8518 texel[0] = x_coordinate;
8519 texel[1] = y_coordinate;
8520 texel[2] = magic_number;
8521 texel[3] = 0xcc;
9019 /** Write name of variable used to store coordinate of texel at given row to output stream
9349 /** Get value of texel for image at given index
9353 * @return Value of texel
9686 * @param original_value Original value of texel, used when creating a texture
9739 * @param original_value Original value of texel, used when creating a texture
9780 * @param original_value Original value of texel, used when creating a texture
9819 * @param original_value Original value of texel, used when creating a texture
9842 * @param original_value Original value of texel, used when creating a texture
10279 * @return true if all texel match expected value, false otherwise