Home
last modified time | relevance | path

Searched refs:ImageInterpolation (Results 1 – 25 of 49) sorted by relevance

12

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/image/
H A Dimage_paint_method.h34 ImageInterpolation interpolation = ImageInterpolation::NONE) in DECLARE_ACE_TYPE()
51 ImageInterpolation interpolationDefault_ = ImageInterpolation::NONE;
H A Dimage_render_property.h32 ACE_DEFINE_PROPERTY_GROUP_ITEM(ImageInterpolation, ImageInterpolation);
55 …NTERPOLATIONVALUE[static_cast<int32_t>(propImageInterpolation.value_or(ImageInterpolation::NONE))], in ToJsonValue()
102 ImagePaintStyle, ImageInterpolation, ImageInterpolation, PROPERTY_UPDATE_RENDER);
H A Dimage_pattern.h163 void SetImageInterpolation(ImageInterpolation value) in SetImageInterpolation()
358 ImageInterpolation GetDefaultInterpolation() in GetDefaultInterpolation()
499 ImageInterpolation interpolation_ = ImageInterpolation::LOW;
533 ImageInterpolation interpolationDefault_ = ImageInterpolation::NONE;
H A Dimage_model_ng.h53 void SetImageInterpolation(ImageInterpolation interpolation) override;
103 static void SetImageInterpolation(FrameNode *frameNode, ImageInterpolation interpolation);
122 static ImageInterpolation GetInterpolation(FrameNode* frameNode);
H A Dimage_model_ng.cpp468 void ImageModelNG::SetImageInterpolation(ImageInterpolation interpolation) in SetImageInterpolation()
470 ACE_UPDATE_PAINT_PROPERTY(ImageRenderProperty, ImageInterpolation, interpolation); in SetImageInterpolation()
764 void ImageModelNG::SetImageInterpolation(FrameNode *frameNode, ImageInterpolation interpolation) in SetImageInterpolation()
766 … ACE_UPDATE_NODE_PAINT_PROPERTY(ImageRenderProperty, ImageInterpolation, interpolation, frameNode); in SetImageInterpolation()
778 …ACE_UPDATE_NODE_PAINT_PROPERTY(ImageRenderProperty, ImageInterpolation, defaultInterpolation, fram… in ResetImageInterpolation()
880 ImageInterpolation ImageModelNG::GetInterpolation(FrameNode* frameNode) in GetInterpolation()
882 CHECK_NULL_RETURN(frameNode, ImageInterpolation::NONE); in GetInterpolation()
884 CHECK_NULL_RETURN(imagePattern, ImageInterpolation::NONE); in GetInterpolation()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Dimage_painter_utils.cpp83 case ImageInterpolation::LOW: { in AddFilter()
87 case ImageInterpolation::MEDIUM: { in AddFilter()
91 case ImageInterpolation::HIGH: { in AddFilter()
110 case ImageInterpolation::LOW: { in AddFilter()
114 case ImageInterpolation::MEDIUM: { in AddFilter()
118 case ImageInterpolation::HIGH: { in AddFilter()
H A Dpixelmap_image.cpp198 case ImageInterpolation::LOW: in DrawImageLattice()
199 case ImageInterpolation::MEDIUM: in DrawImageLattice()
202 case ImageInterpolation::HIGH: in DrawImageLattice()
252 case ImageInterpolation::LOW: in DrawImageNine()
253 case ImageInterpolation::MEDIUM: in DrawImageNine()
256 case ImageInterpolation::HIGH: in DrawImageNine()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_image_ffi.cpp44 const std::vector<ImageInterpolation> IMAGE_INTERPOLATIONS = {
45 ImageInterpolation::NONE,
46 ImageInterpolation::HIGH,
47 ImageInterpolation::MEDIUM,
48 ImageInterpolation::LOW
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/image/
H A Dimage_base.h88 constexpr ImageInterpolation IMAGE_INTERPOLATION_DEFAULT = ImageInterpolation::HIGH;
100 constexpr ImageInterpolation IMAGE_NO_INTERPOLATION = ImageInterpolation::NONE;
H A Dimage_testtwo_ng.cpp169 imageRenderProperty->UpdateImageInterpolation(ImageInterpolation::NONE);
171 EXPECT_EQ(imageRenderProperty->GetImageInterpolation(), ImageInterpolation::NONE);
176 imageRenderProperty->UpdateImageInterpolation(ImageInterpolation::LOW);
178 EXPECT_EQ(imageRenderProperty->GetImageInterpolation(), ImageInterpolation::LOW);
183 imageRenderProperty->UpdateImageInterpolation(ImageInterpolation::MEDIUM);
185 EXPECT_EQ(imageRenderProperty->GetImageInterpolation(), ImageInterpolation::MEDIUM);
190 imageRenderProperty->UpdateImageInterpolation(ImageInterpolation::HIGH);
192 EXPECT_EQ(imageRenderProperty->GetImageInterpolation(), ImageInterpolation::HIGH);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/image/
H A Dimage_component.h61 void SetImageInterpolation(ImageInterpolation imageInterpolation);
84 ImageInterpolation GetImageInterpolation() const;
233 ImageInterpolation imageInterpolation_ = ImageInterpolation::LOW;
H A Drender_image.h115 ImageInterpolation GetImageInterpolation() const in GetImageInterpolation()
391 ImageInterpolation imageInterpolation_ = ImageInterpolation::NONE;
H A Dimage_component.cpp154 void ImageComponent::SetImageInterpolation(ImageInterpolation imageInterpolation) in SetImageInterpolation()
232 ImageInterpolation ImageComponent::GetImageInterpolation() const in GetImageInterpolation()
H A Drosen_render_image.cpp788 case ImageInterpolation::LOW:
791 case ImageInterpolation::MEDIUM:
794 case ImageInterpolation::HIGH:
797 case ImageInterpolation::NONE:
807 case ImageInterpolation::LOW:
810 case ImageInterpolation::MEDIUM:
813 case ImageInterpolation::HIGH:
816 case ImageInterpolation::NONE:
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dimage_modifier.cpp34 constexpr ImageInterpolation DEFAULT_IMAGE_INTERPOLATION = ImageInterpolation::NONE;
234 auto interpolation = static_cast<Ace::ImageInterpolation>(value); in SetImageInterpolation()
235 …if (interpolation < Ace::ImageInterpolation::NONE || interpolation > Ace::ImageInterpolation::HIGH… in SetImageInterpolation()
236 interpolation = Ace::ImageInterpolation::NONE; in SetImageInterpolation()
H A Dnode_image_modifier.cpp360 auto interpolation = static_cast<Ace::ImageInterpolation>(value); in SetImageInterpolation()
361 …if (interpolation < Ace::ImageInterpolation::NONE || interpolation > Ace::ImageInterpolation::HIGH… in SetImageInterpolation()
362 interpolation = Ace::ImageInterpolation::NONE; in SetImageInterpolation()
369 int32_t defaultInterpolation = static_cast<int32_t>(ImageInterpolation::NONE); in GetImageInterpolation()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/rosen/
H A Ddrawing_image.cpp286 case ImageInterpolation::LOW: in DrawImageLattice()
287 case ImageInterpolation::MEDIUM: in DrawImageLattice()
290 case ImageInterpolation::HIGH: in DrawImageLattice()
339 case ImageInterpolation::LOW: in DrawImageNine()
340 case ImageInterpolation::MEDIUM: in DrawImageNine()
343 case ImageInterpolation::HIGH: in DrawImageNine()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Dutils.h345 inline std::string ConvertWrapImageInterpolationToString(ImageInterpolation imageInterpolation) in ConvertWrapImageInterpolationToString()
347 static const LinearEnumMapNode<ImageInterpolation, std::string> imageInterpolationTable[] = { in ConvertWrapImageInterpolationToString()
348 { ImageInterpolation::NONE, "ImageInterpolation.None" }, in ConvertWrapImageInterpolationToString()
349 { ImageInterpolation::LOW, "ImageInterpolation.Low" }, in ConvertWrapImageInterpolationToString()
350 { ImageInterpolation::MEDIUM, "ImageInterpolation.Medium" }, in ConvertWrapImageInterpolationToString()
351 { ImageInterpolation::HIGH, "ImageInterpolation.High" }, in ConvertWrapImageInterpolationToString()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/
H A Dcanvas_image.h51 ImageInterpolation imageInterpolation_ = ImageInterpolation::NONE;
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Darkts-graphics-display.md395 .interpolation(ImageInterpolation.None)
401 .interpolation(ImageInterpolation.Low)
411 .interpolation(ImageInterpolation.Medium)
417 .interpolation(ImageInterpolation.High)
/ohos5.0/base/powermgr/power_manager/power_dialog/entry/src/main/ets/pages/
H A DcapsuleIcon.ets30 .interpolation(ImageInterpolation.Medium)
/ohos5.0/docs/zh-cn/device-dev/subsystems/
H A Dsubsys-arkui-customize-titlebar-arkts.md61 .interpolation(ImageInterpolation.Medium)
174 Image.interpolation(ImageInterpolation.Medium);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DjsEnumStyle.js258 var ImageInterpolation; variable
259 (function (ImageInterpolation) {
260 ImageInterpolation[ImageInterpolation["None"] = 0] = "None";
261 ImageInterpolation[ImageInterpolation["Low"] = 1] = "Low";
262 ImageInterpolation[ImageInterpolation["Medium"] = 2] = "Medium";
263 ImageInterpolation[ImageInterpolation["High"] = 3] = "High";
264 })(ImageInterpolation || (ImageInterpolation = {}));
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dimage_model_impl.h47 void SetImageInterpolation(ImageInterpolation iterpolation) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/container_modal/source/
H A Dcustomtitle.ets60 .interpolation(ImageInterpolation.Medium)

12