Home
last modified time | relevance | path

Searched refs:RuntimeEffect (Results 1 - 25 of 44) sorted by relevance

12

/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/effect/
H A Druntime_effect.cpp23 RuntimeEffect::RuntimeEffect(const std::string& sl, const RuntimeEffectOptions& options) noexcept : RuntimeEffect() in RuntimeEffect() function
28 RuntimeEffect::RuntimeEffect(const std::string& sl) noexcept : RuntimeEffect() in RuntimeEffect() function
33 RuntimeEffect::RuntimeEffect(const std::string& sl, const RuntimeEffectOptions& options,
34 bool isES3) noexcept : RuntimeEffect() in RuntimeEffect() function
39 RuntimeEffect function
[all...]
H A Druntime_blender_builder.cpp24 RuntimeBlenderBuilder::RuntimeBlenderBuilder(std::shared_ptr<RuntimeEffect> runtimeEffect) noexcept
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/effect/runtimeeffect_fuzzer/
H A Druntime_effect_fuzzer.cpp52 std::shared_ptr<RuntimeEffect> runtimee = RuntimeEffect::CreateForShader(s1, runeo); in RuntimeEffectFuzzTest000()
53 std::shared_ptr<RuntimeEffect> runtimee1 = RuntimeEffect::CreateForShader(s1); in RuntimeEffectFuzzTest000()
54 std::shared_ptr<RuntimeEffect> runtimee2 = RuntimeEffect::CreateForES3Shader(s1); in RuntimeEffectFuzzTest000()
55 std::shared_ptr<RuntimeEffect> runtimee3 = RuntimeEffect::CreateForBlender(s1); in RuntimeEffectFuzzTest000()
56 RuntimeEffect rune = RuntimeEffect(s in RuntimeEffectFuzzTest000()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/effect/
H A Druntime_effect.h35 class DRAWING_API RuntimeEffect { class
46 * @return A shared pointer to RuntimeEffect
48 static std::shared_ptr<RuntimeEffect> CreateForShader(const std::string& sl,
50 static std::shared_ptr<RuntimeEffect> CreateForShader(const std::string& sl);
51 static std::shared_ptr<RuntimeEffect> CreateForES3Shader(const std::string& sl);
58 * @return A shared pointer to RuntimeEffect
60 static std::shared_ptr<RuntimeEffect> CreateForBlender(const std::string& sl);
62 explicit RuntimeEffect(const std::string& sl) noexcept;
63 RuntimeEffect(const std::string& sl, const RuntimeEffectOptions&) noexcept;
64 RuntimeEffect(cons
[all...]
H A Druntime_blender_builder.h25 class RuntimeEffect;
29 RuntimeBlenderBuilder(std::shared_ptr<RuntimeEffect> runtimeEffect) noexcept;
H A Druntime_shader_builder.h26 class RuntimeEffect;
29 RuntimeShaderBuilder(std::shared_ptr<RuntimeEffect> runtimeEffect) noexcept;
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/src/
H A Dge_water_ripple_filter.cpp54 std::shared_ptr<Drawing::RuntimeEffect> waterRipple; in ProcessImage()
92 std::shared_ptr<Drawing::RuntimeEffect> GEWaterRippleFilter::GetWaterRippleEffectSM(const int rippleMode) in GetWaterRippleEffectSM()
94 static std::shared_ptr<Drawing::RuntimeEffect> g_waterRippleEffectSM = nullptr; in GetWaterRippleEffectSM()
97 Drawing::RuntimeEffect::CreateForShader(shaderStringSMsend) : in GetWaterRippleEffectSM()
98 Drawing::RuntimeEffect::CreateForShader(shaderStringSMrecv); in GetWaterRippleEffectSM()
103 std::shared_ptr<Drawing::RuntimeEffect> GEWaterRippleFilter::GetWaterRippleEffectSS() in GetWaterRippleEffectSS()
105 static std::shared_ptr<Drawing::RuntimeEffect> g_waterRippleEffectSS = nullptr; in GetWaterRippleEffectSS()
107 g_waterRippleEffectSS = Drawing::RuntimeEffect::CreateForShader(shaderStringSSmutual); in GetWaterRippleEffectSS()
H A Dge_grey_shader_filter.cpp34 static std::shared_ptr<Drawing::RuntimeEffect> g_greyAdjustEffect;
113 g_greyAdjustEffect = Drawing::RuntimeEffect::CreateForShader(GreyGradationString); in InitGreyAdjustmentEffect()
H A Dge_aibar_shader_filter.cpp63 static std::shared_ptr<Drawing::RuntimeEffect> binarizationShaderEffect_; in MakeBinarizationShader()
89 binarizationShaderEffect_ = Drawing::RuntimeEffect::CreateForShader(prog); in MakeBinarizationShader()
H A Dge_kawase_blur_shader_filter.cpp39 static std::shared_ptr<Drawing::RuntimeEffect> g_blurEffect;
40 static std::shared_ptr<Drawing::RuntimeEffect> g_mixEffect;
41 static std::shared_ptr<Drawing::RuntimeEffect> g_blurEffectAf;
42 static std::shared_ptr<Drawing::RuntimeEffect> g_simpleFilter;
302 g_blurEffect = Drawing::RuntimeEffect::CreateForShader(blurString); in InitBlurEffect()
335 g_mixEffect = Drawing::RuntimeEffect::CreateForShader(mixString); in InitMixEffect()
356 g_simpleFilter = Drawing::RuntimeEffect::CreateForShader(simpleShader); in InitSimpleFilter()
386 g_blurEffectAf = Drawing::RuntimeEffect::CreateForShader(blurStringAF, ops); in InitBlurEffectForAdvancedFilter()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/
H A Dskia_runtime_shader_builder_test.cpp59 std::shared_ptr<RuntimeEffect> effect = RuntimeEffect::CreateForShader(shaderString); in HWTEST_F()
110 std::shared_ptr<RuntimeEffect> effect = RuntimeEffect::CreateForShader(shaderString); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/runtimeeffect_fuzzer/
H A Druntime_effect_fuzzer.cpp44 std::shared_ptr<RuntimeEffect> runtimeEffect = RuntimeEffect::CreateForShader("shader"); in RuntimeEffectFuzzTest()
75 std::shared_ptr<Drawing::RuntimeEffect> runtimeshader = in RuntimeShaderFuzzTest()
76 Drawing::RuntimeEffect::CreateForShader(prog); in RuntimeShaderFuzzTest()
131 std::shared_ptr<Drawing::RuntimeEffect> runtimeshader = in RuntimeBlenderFuzzTest()
132 Drawing::RuntimeEffect::CreateForBlender(prog); in RuntimeBlenderFuzzTest()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/
H A Drs_kawase_blur.h90 std::shared_ptr<Drawing::RuntimeEffect> blurEffect_;
91 std::shared_ptr<Drawing::RuntimeEffect> mixEffect_;
92 std::shared_ptr<Drawing::RuntimeEffect> simpleFilter_;
98 std::shared_ptr<Drawing::RuntimeEffect> blurEffectAF_;
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/include/
H A Dge_water_ripple_filter.h42 std::shared_ptr<Drawing::RuntimeEffect> GetWaterRippleEffectSM(const int rippleMode);
43 std::shared_ptr<Drawing::RuntimeEffect> GetWaterRippleEffectSS();
H A Dge_linear_gradient_blur_shader_filter.h83 static std::shared_ptr<Drawing::RuntimeEffect> horizontalMeanBlurShaderEffect_;
84 static std::shared_ptr<Drawing::RuntimeEffect> verticalMeanBlurShaderEffect_;
85 static std::shared_ptr<Drawing::RuntimeEffect> maskBlurShaderEffect_;
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/property/
H A Drs_properties_painter.h133 static std::shared_ptr<Drawing::RuntimeEffect> MakeGreyAdjustmentEffect();
160 static std::shared_ptr<Drawing::RuntimeEffect> greyAdjustEffect_;
161 static std::shared_ptr<Drawing::RuntimeEffect> binarizationShaderEffect_;
162 static std::shared_ptr<Drawing::RuntimeEffect> lightUpEffectShaderEffect_;
163 static std::shared_ptr<Drawing::RuntimeEffect> dynamicBrightnessBlenderEffect_;
164 static std::shared_ptr<Drawing::RuntimeEffect> dynamicLightUpBlenderEffect_;
165 static std::shared_ptr<Drawing::RuntimeEffect> dynamicDimShaderEffect_;
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_runtime_shader_builder.h29 class RuntimeEffect;
36 SkiaRuntimeShaderBuilder(std::shared_ptr<RuntimeEffect>) noexcept;
H A Dskia_impl_factory.h80 std::shared_ptr<RuntimeEffect> runtimeEffect);
82 std::shared_ptr<RuntimeEffect> runtimeEffect);
H A Dskia_runtime_blender_builder.cpp24 SkiaRuntimeBlenderBuilder::SkiaRuntimeBlenderBuilder(std::shared_ptr<RuntimeEffect> effect) noexcept
H A Dskia_runtime_blender_builder.h31 explicit SkiaRuntimeBlenderBuilder(std::shared_ptr<RuntimeEffect>) noexcept;
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/
H A Druntime_blender_builder_impl.h30 explicit RuntimeBlenderBuilderImpl(std::shared_ptr<RuntimeEffect> runtimeEffect) {} in RuntimeBlenderBuilderImpl()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/
H A Dimpl_factory.h79 static std::unique_ptr<RuntimeShaderBuilderImpl> CreateRuntimeShaderBuilderImpl(std::shared_ptr<RuntimeEffect>);
80 static std::unique_ptr<RuntimeBlenderBuilderImpl> CreateRuntimeBlenderBuilderImpl(std::shared_ptr<RuntimeEffect>);
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_distortion_shader_filter.cpp64 static std::shared_ptr<Drawing::RuntimeEffect> distortEffect = nullptr; in MakeDistortionShader()
86 distortEffect = Drawing::RuntimeEffect::CreateForShader(distortString); in MakeDistortionShader()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/drawable/
H A Drs_property_drawable_utils.h86 static std::shared_ptr<Drawing::RuntimeEffect> binarizationShaderEffect_;
87 static std::shared_ptr<Drawing::RuntimeEffect> dynamicDimShaderEffect_;
88 static std::shared_ptr<Drawing::RuntimeEffect> dynamicBrightnessBlenderEffect_;
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/test/unittest/
H A Dge_render_test.cpp40 std::shared_ptr<Drawing::RuntimeEffect> MakeGreyAdjustmentEffect();
42 std::shared_ptr<Drawing::RuntimeEffect> greyAdjustEffect_;
55 std::shared_ptr<Drawing::RuntimeEffect> GERenderTest::MakeGreyAdjustmentEffect() in MakeGreyAdjustmentEffect()
100 std::shared_ptr<Drawing::RuntimeEffect> greyAdjustEffect = in MakeGreyAdjustmentEffect()
101 Drawing::RuntimeEffect::CreateForShader(GreyGradationString); in MakeGreyAdjustmentEffect()

Completed in 9 milliseconds

12