Searched refs:angleColor (Results 1 – 1 of 1) sorted by relevance
/external/angle/src/tests/test_utils/ |
D | ANGLETest.h | 257 #define EXPECT_PIXEL_COLOR_EQ(x, y, angleColor) EXPECT_EQ(angleColor, angle::ReadColor(x, y)) argument 258 #define EXPECT_PIXEL_COLOR_EQ_VEC2(vec2, angleColor) \ argument 259 EXPECT_EQ(angleColor, \ 262 #define EXPECT_PIXEL_COLOR32F_EQ(x, y, angleColor) EXPECT_EQ(angleColor, angle::ReadColor32F(x, y)) argument 344 #define EXPECT_PIXEL_COLOR_NEAR(x, y, angleColor, abs_error) \ argument 345 EXPECT_PIXEL_NEAR(x, y, angleColor.R, angleColor.G, angleColor.B, angleColor.A, abs_error) 347 #define EXPECT_PIXEL_COLOR16_NEAR(x, y, angleColor, abs_error) \ argument 348 EXPECT_PIXEL_16_NEAR(x, y, angleColor.R, angleColor.G, angleColor.B, angleColor.A, abs_error) 350 #define EXPECT_PIXEL_COLOR32F_NEAR(x, y, angleColor, abs_error) \ argument 351 EXPECT_PIXEL32F_NEAR(x, y, angleColor.R, angleColor.G, angleColor.B, angleColor.A, abs_error) [all …]
|