Home
last modified time | relevance | path

Searched refs:dst_pixels (Results 1 – 3 of 3) sorted by relevance

/external/deqp/external/openglcts/modules/gl/
Dgl4cCopyImageTests.cpp2586 GLubyte* dst_pixels[FUNCTIONAL_TEST_N_LEVELS] = { 0 }; in iterate() local
2600 prepareDstPxls(test_case.m_dst, dst_pixels); in iterate()
2604 m_dst_tex_name = prepareTexture(test_case.m_dst, (const GLubyte**)dst_pixels, m_dst_buf_name); in iterate()
2620 result = copyAndVerify(test_case, (const GLubyte**)dst_pixels, (const GLubyte**)src_pixels); in iterate()
2625 cleanPixels((GLubyte**)dst_pixels); in iterate()
2632 cleanPixels((GLubyte**)dst_pixels); in iterate()
2716 bool FunctionalTest::copyAndVerify(const testCase& test_case, const GLubyte** dst_pixels, const GLu… in copyAndVerify() argument
2785 result = verify(test_case, dst_layer, dst_pixels, src_layer, src_pixels, region_depth); in copyAndVerify()
3439 bool FunctionalTest::verify(const testCase& test_case, GLuint dst_layer, const GLubyte** dst_pixels in verify() argument
3530 …if (false == compareImages(test_case.m_dst, dst_pixels[level], 0, 0, layer, level, test_case.m_dst, in verify()
[all …]
Dgl4cCopyImageTests.hpp141 …bool copyAndVerify(const testCase& test_case, const glw::GLubyte** dst_pixels, const glw::GLubyte*…
157 bool verify(const testCase& test_case, glw::GLuint dst_layer, const glw::GLubyte** dst_pixels,
/external/libyuv/files/unit_test/
Dplanar_test.cc764 SIMD_ALIGNED(uint8 dst_pixels[1280][4]); in TEST_F()
772 ARGBMirror(&orig_pixels[0][0], 0, &dst_pixels[0][0], 0, 1280, 1); in TEST_F()
775 EXPECT_EQ(i & 255, dst_pixels[1280 - 1 - i][0]); in TEST_F()
776 EXPECT_EQ((i / 2) & 255, dst_pixels[1280 - 1 - i][1]); in TEST_F()
777 EXPECT_EQ((i / 3) & 255, dst_pixels[1280 - 1 - i][2]); in TEST_F()
778 EXPECT_EQ((i / 4) & 255, dst_pixels[1280 - 1 - i][3]); in TEST_F()
781 ARGBMirror(&orig_pixels[0][0], 0, &dst_pixels[0][0], 0, 1280, 1); in TEST_F()