Searched refs:GLColorRGB (Results 1 – 3 of 3) sorted by relevance
/external/angle/src/tests/test_utils/ |
D | ANGLETest.h | 80 struct GLColorRGB struct 82 constexpr GLColorRGB() : R(0), G(0), B(0) {} in GLColorRGB() function 83 constexpr GLColorRGB(GLubyte r, GLubyte g, GLubyte b) : R(r), G(g), B(b) {} in GLColorRGB() argument 84 GLColorRGB(const angle::Vector3 &floatColor); 91 static const GLColorRGB black; argument 92 static const GLColorRGB blue; argument 93 static const GLColorRGB green; argument 94 static const GLColorRGB red; argument 95 static const GLColorRGB yellow; argument
|
D | ANGLETest.cpp | 30 const GLColorRGB GLColorRGB::black(0u, 0u, 0u); 31 const GLColorRGB GLColorRGB::blue(0u, 0u, 255u); 32 const GLColorRGB GLColorRGB::green(0u, 255u, 0u); 33 const GLColorRGB GLColorRGB::red(255u, 0u, 0u); 34 const GLColorRGB GLColorRGB::yellow(255u, 255u, 0); 218 GLColorRGB::GLColorRGB(const Vector3 &floatColor) in GLColorRGB() function in angle::GLColorRGB
|
/external/angle/src/tests/gl_tests/ |
D | SixteenBppTextureTest.cpp | 272 std::vector<GLColorRGB> fourColors; in TEST_P() 273 fourColors.push_back(GLColorRGB::red); in TEST_P() 274 fourColors.push_back(GLColorRGB::green); in TEST_P() 275 fourColors.push_back(GLColorRGB::blue); in TEST_P() 276 fourColors.push_back(GLColorRGB::yellow); in TEST_P()
|