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 internalformat) const;
517 bool verifyClampToEdge(GLubyte* buf, GLsizei width_init, GLsizei height_init, GLsizei width, GLsizei height,
519 bool verifyRepeat(GLubyte* buf, GLsizei width, GLsizei height, GLenum internalformat) const;
520 bool verifyMirroredRepeat(GLubyte* buf, GLsizei width, GLsizei height, GLenum internalformat) const;
576 bool TestClampModeForInternalFormat::isEqual(const GLubyte* color1, const GLubyte* color2, GLubyte tolerance) const
597 void TestClampModeForInternalFormat::fillTextureWithColor(GLubyte* texture_data, GLsizei tex_width, GLsizei tex_height,
601 const GLubyte* red = testedFormat->internalred;
602 const GLubyte* green = testedFormat->internalgreen;
603 const GLubyte* blue = testedFormat->internalblue;
604 const GLubyte* white = testedFormat->internalwhite;
650 std::vector<GLubyte> tex_buf(width * height * MAX_PIXEL_SIZE, 0);
745 bool TestClampModeForInternalFormat::verifyClampToEdge(GLubyte* buf, GLsizei width_init, GLsizei height_init,
750 const GLubyte* red = testedFormat->RGBAred;
751 const GLubyte* green = testedFormat->RGBAgreen;
752 const GLubyte* blue = testedFormat->RGBAblue;
753 const GLubyte* white = testedFormat->RGBAwhite;
761 GLubyte epsilons[4];
768 epsilons[i] = (GLubyte)(epsilonf[i] * 255.0f);
838 bool TestClampModeForInternalFormat::verifyRepeat(GLubyte* buf, GLsizei width, GLsizei height,
844 const GLubyte* red = testedFormat->RGBAred;
845 const GLubyte* green = testedFormat->RGBAgreen;
846 const GLubyte* blue = testedFormat->RGBAblue;
847 const GLubyte* white = testedFormat->RGBAwhite;
849 const GLubyte tolerance = 0;
921 bool TestClampModeForInternalFormat::verifyMirroredRepeat(GLubyte* buf, GLsizei width, GLsizei height,
927 const GLubyte* red = testedFormat->RGBAred;
928 const GLubyte* green = testedFormat->RGBAgreen;
929 const GLubyte* blue = testedFormat->RGBAblue;
930 const GLubyte* white = testedFormat->RGBAwhite;
933 const GLubyte tolerance = 0;
1125 bool TestClampModeForInternalFormat::verifyClampMode(GLubyte* buf, GLsizei width, GLsizei height, GLenum clampMode,
1231 std::vector<GLubyte> textureData(resultTextureSize * MAX_PIXEL_SIZE, 0);
1319 std::vector<GLubyte> buffer(resultTextureSize * 4, 0);