Lines Matching refs:GLubyte
89 GLubyte internalred[MAX_PIXEL_SIZE];
90 GLubyte internalgreen[MAX_PIXEL_SIZE];
91 GLubyte internalblue[MAX_PIXEL_SIZE];
92 GLubyte internalwhite[MAX_PIXEL_SIZE];
95 GLubyte RGBAred[4];
96 GLubyte RGBAgreen[4];
97 GLubyte RGBAblue[4];
98 GLubyte RGBAwhite[4];
510 void fillTextureWithColor(GLubyte* texture_data, GLsizei tex_width, GLsizei tex_height,
514 bool isEqual(const GLubyte* color1, const GLubyte* color2, GLubyte tolerance) const;
516 …bool verifyClampMode(GLubyte* buf, GLsizei width, GLsizei height, GLenum clampMode, GLenum interna…
517 …bool verifyClampToEdge(GLubyte* buf, GLsizei width_init, GLsizei height_init, GLsizei width, GLsiz…
519 bool verifyRepeat(GLubyte* buf, GLsizei width, GLsizei height, GLenum internalformat) const;
520 …bool verifyMirroredRepeat(GLubyte* buf, GLsizei width, GLsizei height, GLenum internalformat) cons…
576 bool TestClampModeForInternalFormat::isEqual(const GLubyte* color1, const GLubyte* color2, GLubyte … in isEqual()
597 void TestClampModeForInternalFormat::fillTextureWithColor(GLubyte* texture_data, GLsizei tex_width,… in fillTextureWithColor()
601 const GLubyte* red = testedFormat->internalred; in fillTextureWithColor()
602 const GLubyte* green = testedFormat->internalgreen; in fillTextureWithColor()
603 const GLubyte* blue = testedFormat->internalblue; in fillTextureWithColor()
604 const GLubyte* white = testedFormat->internalwhite; in fillTextureWithColor()
650 std::vector<GLubyte> tex_buf(width * height * MAX_PIXEL_SIZE, 0); in clearTextures()
745 bool TestClampModeForInternalFormat::verifyClampToEdge(GLubyte* buf, GLsizei width_init, GLsizei he… in verifyClampToEdge()
750 const GLubyte* red = testedFormat->RGBAred; in verifyClampToEdge()
751 const GLubyte* green = testedFormat->RGBAgreen; in verifyClampToEdge()
752 const GLubyte* blue = testedFormat->RGBAblue; in verifyClampToEdge()
753 const GLubyte* white = testedFormat->RGBAwhite; in verifyClampToEdge()
761 GLubyte epsilons[4]; in verifyClampToEdge()
768 epsilons[i] = (GLubyte)(epsilonf[i] * 255.0f); in verifyClampToEdge()
838 bool TestClampModeForInternalFormat::verifyRepeat(GLubyte* buf, GLsizei width, GLsizei height, in verifyRepeat()
844 const GLubyte* red = testedFormat->RGBAred; in verifyRepeat()
845 const GLubyte* green = testedFormat->RGBAgreen; in verifyRepeat()
846 const GLubyte* blue = testedFormat->RGBAblue; in verifyRepeat()
847 const GLubyte* white = testedFormat->RGBAwhite; in verifyRepeat()
849 const GLubyte tolerance = 0; in verifyRepeat()
921 bool TestClampModeForInternalFormat::verifyMirroredRepeat(GLubyte* buf, GLsizei width, GLsizei heig… in verifyMirroredRepeat()
927 const GLubyte* red = testedFormat->RGBAred; in verifyMirroredRepeat()
928 const GLubyte* green = testedFormat->RGBAgreen; in verifyMirroredRepeat()
929 const GLubyte* blue = testedFormat->RGBAblue; in verifyMirroredRepeat()
930 const GLubyte* white = testedFormat->RGBAwhite; in verifyMirroredRepeat()
933 const GLubyte tolerance = 0; in verifyMirroredRepeat()
1125 bool TestClampModeForInternalFormat::verifyClampMode(GLubyte* buf, GLsizei width, GLsizei height, G… in verifyClampMode()
1231 std::vector<GLubyte> textureData(resultTextureSize * MAX_PIXEL_SIZE, 0); in iterate()
1319 std::vector<GLubyte> buffer(resultTextureSize * 4, 0); in iterate()