• Home
  • Raw
  • Download

Lines Matching refs:reporter

13 static void test_bitmap(skiatest::Reporter* reporter) {  in test_bitmap()  argument
20 REPORTER_ASSERT(reporter, shader); in test_bitmap()
21 REPORTER_ASSERT(reporter, !shader->isOpaque()); in test_bitmap()
30 REPORTER_ASSERT(reporter, shader); in test_bitmap()
31 REPORTER_ASSERT(reporter, !shader->isOpaque()); in test_bitmap()
38 REPORTER_ASSERT(reporter, shader); in test_bitmap()
39 REPORTER_ASSERT(reporter, shader->isOpaque()); in test_bitmap()
46 REPORTER_ASSERT(reporter, shader); in test_bitmap()
47 REPORTER_ASSERT(reporter, !shader->isOpaque()); in test_bitmap()
52 static void test_gradient(skiatest::Reporter* reporter) in test_gradient() argument
67 REPORTER_ASSERT(reporter, grad); in test_gradient()
68 REPORTER_ASSERT(reporter, grad->isOpaque()); in test_gradient()
75 REPORTER_ASSERT(reporter, grad); in test_gradient()
76 REPORTER_ASSERT(reporter, !grad->isOpaque()); in test_gradient()
83 REPORTER_ASSERT(reporter, grad); in test_gradient()
84 REPORTER_ASSERT(reporter, !grad->isOpaque()); in test_gradient()
91 REPORTER_ASSERT(reporter, grad); in test_gradient()
92 REPORTER_ASSERT(reporter, !grad->isOpaque()); in test_gradient()
96 static void test_color(skiatest::Reporter* reporter) in test_color() argument
99 REPORTER_ASSERT(reporter, !colorShader1.isOpaque()); in test_color()
101 REPORTER_ASSERT(reporter, colorShader2.isOpaque()); in test_color()
103 REPORTER_ASSERT(reporter, !colorShader3.isOpaque()); in test_color()
108 REPORTER_ASSERT(reporter, colorShader4.isOpaque()); in test_color()
111 static void test_shader_opacity(skiatest::Reporter* reporter) in test_shader_opacity() argument
113 test_gradient(reporter); in test_shader_opacity()
114 test_color(reporter); in test_shader_opacity()
115 test_bitmap(reporter); in test_shader_opacity()