/foundation/graphic/graphic_2d/rosen/modules/effect/test/unittest/ |
H A D | program_unittest.cpp | 47 program->Compile(horizon->GetVertexShader(), horizon->GetFragmentShader());
in HWTEST_F() 70 program->Compile(vertical->GetVertexShader(), vertical->GetFragmentShader());
in HWTEST_F() 93 program->Compile(saturation->GetVertexShader(), saturation->GetFragmentShader());
in HWTEST_F() 116 program->Compile(saturation->GetVertexShader(), saturation->GetFragmentShader());
in HWTEST_F()
|
H A D | scale_filter_unittest.cpp | 126 EXPECT_TRUE(scale->GetVertexShader() != result);
in HWTEST_F() 146 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 160 EXPECT_TRUE(scale->GetVertexShader() == result);
in HWTEST_F() 180 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 183 EXPECT_TRUE(scale->GetVertexShader() != result);
in HWTEST_F()
|
H A D | contrast_filter_unittest.cpp | 147 EXPECT_TRUE(contrast->GetVertexShader() != result);
in HWTEST_F() 167 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 182 EXPECT_TRUE(contrast->GetVertexShader() == result);
in HWTEST_F() 202 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 205 EXPECT_TRUE(contrast->GetVertexShader() != result);
in HWTEST_F()
|
H A D | saturation_filter_unittest.cpp | 137 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 152 EXPECT_TRUE(saturation->GetVertexShader() == result);
in HWTEST_F() 172 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 175 EXPECT_TRUE(saturation->GetVertexShader() != result);
in HWTEST_F()
|
H A D | horizontal_blur_filter_unittest.cpp | 155 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 170 EXPECT_TRUE(horizontalBlur->GetVertexShader() == result);
in HWTEST_F() 190 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 193 EXPECT_TRUE(horizontalBlur->GetVertexShader() != result);
in HWTEST_F()
|
H A D | brightness_filter_unittest.cpp | 136 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 151 EXPECT_TRUE(brightness->GetVertexShader() == result);
in HWTEST_F() 171 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 174 EXPECT_TRUE(brightness->GetVertexShader() != result);
in HWTEST_F()
|
H A D | vertical_blur_filter_unittest.cpp | 134 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 149 EXPECT_TRUE(verticalBlur->GetVertexShader() == result);
in HWTEST_F() 169 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 172 EXPECT_TRUE(verticalBlur->GetVertexShader() != result);
in HWTEST_F()
|
H A D | gaussian_blur_filter_unittest.cpp | 134 * @tc.steps: step2. Call GetVertexShader to get the strings
in HWTEST_F() 136 EXPECT_TRUE(gaussianBlur->GetVertexShader() == std::string());
in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/modules/effect/effectChain/src/ |
H A D | saturation_filter.cpp | 22 CreateProgram(GetVertexShader(), GetFragmentShader());
in SaturationFilter() 41 std::string SaturationFilter::GetVertexShader()
in GetVertexShader() function in OHOS::Rosen::SaturationFilter
|
H A D | brightness_filter.cpp | 22 CreateProgram(GetVertexShader(), GetFragmentShader());
in BrightnessFilter() 41 std::string BrightnessFilter::GetVertexShader()
in GetVertexShader() function in OHOS::Rosen::BrightnessFilter
|
H A D | contrast_filter.cpp | 22 CreateProgram(GetVertexShader(), GetFragmentShader());
in ContrastFilter() 41 std::string ContrastFilter::GetVertexShader()
in GetVertexShader() function in OHOS::Rosen::ContrastFilter
|
H A D | vertical_blur_filter.cpp | 22 CreateProgram(GetVertexShader(), GetFragmentShader());
in VerticalBlurFilter() 50 std::string VerticalBlurFilter::GetVertexShader()
in GetVertexShader() function in OHOS::Rosen::VerticalBlurFilter
|
H A D | scale_filter.cpp | 22 CreateProgram(GetVertexShader(), GetFragmentShader());
in ScaleFilter() 46 std::string ScaleFilter::GetVertexShader()
in GetVertexShader() function in OHOS::Rosen::ScaleFilter
|
H A D | horizontal_blur_filter.cpp | 22 CreateProgram(GetVertexShader(), GetFragmentShader());
in HorizontalBlurFilter() 52 std::string HorizontalBlurFilter::GetVertexShader()
in GetVertexShader() function in OHOS::Rosen::HorizontalBlurFilter
|
H A D | gaussian_blur_filter.cpp | 53 std::string GaussianBlurFilter::GetVertexShader()
in GetVertexShader() function in OHOS::Rosen::GaussianBlurFilter
|
H A D | output.cpp | 25 CreateProgram(GetVertexShader(), GetFragmentShader());
in Output() 130 std::string Output::GetVertexShader()
in GetVertexShader() function in OHOS::Rosen::Output
|
/foundation/graphic/graphic_2d/rosen/modules/effect/effectChain/include/ |
H A D | saturation_filter.h | 31 std::string GetVertexShader() override;
|
H A D | scale_filter.h | 30 std::string GetVertexShader() override;
|
H A D | brightness_filter.h | 30 std::string GetVertexShader() override;
|
H A D | contrast_filter.h | 30 std::string GetVertexShader() override;
|
H A D | horizontal_blur_filter.h | 37 std::string GetVertexShader() override;
|
H A D | vertical_blur_filter.h | 37 std::string GetVertexShader() override;
|
H A D | output.h | 32 std::string GetVertexShader() override;
|
H A D | gaussian_blur_filter.h | 34 std::string GetVertexShader() override;
|
H A D | algo_filter.h | 34 virtual std::string GetVertexShader() = 0;
|