Home
last modified time | relevance | path

Searched refs:greyCoef1 (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/include/
H A Dge_shader_filter_params.h60 float greyCoef1; member
83 float greyCoef1; member
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/test/unittest/
H A Dge_visual_effect_impl_test.cpp148 EXPECT_EQ(geVisualEffectImpl2.GetGreyParams()->greyCoef1, paramfloat);
268 EXPECT_EQ(geVisualEffectImpl.GetGreyParams()->greyCoef1, 1.0f);
270 EXPECT_NE(geVisualEffectImpl.GetGreyParams()->greyCoef1, 2.0f);
397 EXPECT_EQ(geVisualEffectImpl.GetMESAParams()->greyCoef1, 1.0f);
398 EXPECT_EQ(geVisualEffectImpl.GetMESAParams()->greyCoef1, 1.0f);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/src/
H A Dge_grey_shader_filter.cpp26 : greyCoef1_(params.greyCoef1), greyCoef2_(params.greyCoef2) in GEGreyShaderFilter()
H A Dge_visual_effect_impl.cpp259 [](GEVisualEffectImpl* obj, float p) { obj->mesaParams_->greyCoef1 = p; } }, in SetMESABlurParams()
314 …{ GE_FILTER_GREY_COEF_1, [](GEVisualEffectImpl* obj, float p) { obj->greyParams_->greyCoef1 = p; }… in SetGreyParams()
H A Dge_mesa_blur_shader_filter.cpp92 : radius_(params.radius), greyCoef1_(params.greyCoef1), greyCoef2_(params.greyCoef2), in GEMESABlurShaderFilter()