Home
last modified time | relevance | path

Searched refs:blend (Results 1 – 25 of 30) sorted by relevance

12

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/image/apng/
H A Dapng_image_player.cpp168 frame.blend = ImageBlendOver; in GetApngAllFrames()
172 frame.blend = ImageBlendNone; in GetApngAllFrames()
362 if (frameInfo->blend == ImageBlendOver) { in BlendImage()
394 if (frameInfo->blend == ImageBlendOver) { in BlendImage()
477 if (frameInfo->blend == ImageBlendOver) { in GetImage()
514 if (frameInfo->blend == ImageBlendOver) { in GetImage()
543 if (frameInfo->blend == ImageBlendOver) { in GetImage()
592 if (frameInfo->blend == ImageBlendOver) { in GetImage()
624 if (frameInfo->blend == ImageBlendOver) { in GetImage()
651 if (frameInfo->blend == ImageBlendOver) { in GetImage()
[all …]
H A Dapng_image_player.h83 ImageBlendOperation blend = ImageBlendNone; member
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-universal-attributes-image-effect-sys.md27 …meter type.<br>When the parameter type is **BlendMode**, it indicates the blend mode.<br>Default v…
28blend mode is implemented offscreen.<br>Default value: **BlendApplyType.FAST**<br>**NOTE**<br>1. W…
H A Dts-universal-attributes-image-effect.md176 Applies a color blend effect to the component.
188 …md#color) \| string \| [Resource](ts-types.md#resource) | Yes | Color to blend with the component…
240blend mode is implemented offscreen.<br>Default value: **BlendApplyType.FAST**<br>**NOTE**<br>1. A…
244 Defines how to apply the specified blend mode to the content of a view.
538 // Apply the color blend effect.
/ohos5.0/docs/en/application-dev/reference/apis-arkgraphics2d/
H A Ddrawing__types_8h.md71 …lendMode](_drawing.md#oh_drawing_blendmode) | Defines an enum for blend modes. In blend mode, each…
86 … BLEND_MODE_COLOR,<br>BLEND_MODE_LUMINOSITY<br>} | Enumerates the blend modes. In blend mode, each…
H A Ddrawing__color__filter_8h.md24 …md#oh_drawing_blendmode)) | Creates an **OH_Drawing_ColorFilter** object with a given blend mode.|
H A Ddrawing__brush_8h.md37 …rawing_blendmode)) | Sets a blender for a brush. The blender implements the specified blend mode.|
H A Ddrawing__pen_8h.md62 …drawing_blendmode)) | Sets a blender for a pen. The blender implements the specified blend mode. |
H A Ddrawing__canvas_8h.md50 …_drawing_blendmode) blendMode) | Fills the entire canvas with the specified color and blend mode.|
H A D_drawing.md183 …awing_BlendMode](#oh_drawing_blendmode) | Defines an enum for the blend modes. In blend mode, each…
269 …drawing_blendmode)) | Sets a blender for a brush. The blender implements the specified blend mode.|
310 …e](#oh_drawing_blendmode)) | Creates an **OH_Drawing_ColorFilter** object with a given blend mode.|
485 …h_drawing_blendmode)) | Sets a blender for a pen. The blender implements the specified blend mode.|
987 Defines an enum for the blend modes. In blend mode, each operation generates a new color from two c…
2222 Enumerates the blend modes. In blend mode, each operation generates a new color from two colors (so…
3767 Fills the entire canvas with the specified color and blend mode.
6002 Sets a blender for a brush. The blender implements the specified blend mode.
7279 …ing_Brush](#oh_drawing_brush) object. The alpha value, filter effect, and blend mode of the brush …
7397 Creates an **OH_Drawing_ColorFilter** object with a given blend mode.
[all …]
/ohos5.0/drivers/peripheral/display/interfaces/include/
H A Ddisplay_vgu.h271 …VGUBlendType blend; /* < Blend type, specifying how a new image is drawn onto an existing surf… member
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/assets/3d/shaders/shader/
H A Dcore3d_dm_df.frag94 // NOTE: by the spec with blend mode opaque alpha should be 1.0 from this calculation
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/
H A Dgltf2_importer.h105 SingleShaderData blend; member
H A Dgltf2_importer.cpp1661 desc.materialShader.shader = dmShaderData.blend.shader; in SelectShaders()
1663 desc.materialShader.graphicsState = dmShaderData.blend.gfxState; in SelectShaders()
1668 desc.materialShader.shader = dmShaderData.blend.shader; in SelectShaders()
1670 … gltfMaterial.doubleSided ? dmShaderData.blend.gfxStateDoubleSided : dmShaderData.blend.gfxState; in SelectShaders()
2569 DefaultMaterialShaderConstants::RENDER_SLOT_FORWARD_TRANSLUCENT, dmShaderData_.blend); in GLTF2Importer()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Drender_backend_gles.cpp2896 const auto& blend = graphicsState.colorBlendState; in UpdateBlendState() local
2898 for (GLuint i = 0; i < blend.colorAttachmentCount; i++) { in UpdateBlendState()
2899 const auto& blendState = blend.colorAttachments[i]; in UpdateBlendState()
2940 if (!Compare(cBlend.colorBlendConstants, blend.colorBlendConstants)) { in UpdateBlendState()
2941 Set(cBlend.colorBlendConstants, blend.colorBlendConstants); in UpdateBlendState()
2942 …glBlendColor(blend.colorBlendConstants[Gles::RED_INDEX], blend.colorBlendConstants[Gles::GREEN_IND… in UpdateBlendState()
2943blend.colorBlendConstants[Gles::BLUE_INDEX], blend.colorBlendConstants[Gles::ALPHA_INDEX]); in UpdateBlendState()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/
H A Drender_system.h133 SingleShaderData blend; member
H A Drender_system.cpp466 …stexpr Math::Vec4 LerpVec4(const Math::Vec4& vec0, const Math::Vec4& vec1, const Math::Vec4& blend) in LerpVec4() argument
468 return Math::Vec4(Math::lerp(vec0.x, vec1.x, blend.x), Math::lerp(vec0.y, vec1.y, blend.y), in LerpVec4()
469 Math::lerp(vec0.z, vec1.z, blend.z), Math::lerp(vec0.w, vec1.w, blend.w)); in LerpVec4()
1277 DefaultMaterialShaderConstants::RENDER_SLOT_FORWARD_TRANSLUCENT, dmShaderData_.blend); in Initialize()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/
H A Ddatepicker_column_pattern.cpp278 auto blend = host->GetParent(); in SetButtonBackgroundColor() local
279 CHECK_NULL_VOID(blend); in SetButtonBackgroundColor()
280 auto stack = blend->GetParent(); in SetButtonBackgroundColor()
/ohos5.0/docs/en/
H A Dglossary.md87 … framework, which strives to implement hyper-automatic tests. Hypium is a blend of Hyper Automatio…
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_picker/
H A Dtextpicker_column_pattern.cpp321 auto blend = host->GetParent(); in SetButtonBackgroundColor() local
322 CHECK_NULL_VOID(blend); in SetButtonBackgroundColor()
323 auto stack = blend->GetParent(); in SetButtonBackgroundColor()
/ohos5.0/docs/en/device-dev/driver/
H A Ddriver-peripherals-display-vdi-des.md81 …| int32_t SetLayerBlendType(uint32_t devId, uint32_t layerId, BlendType type) | Sets the blend typ…
H A Ddriver-platform-mipicsi-des.md8 …s lower power consumption but lower transmission speed (< 10 Mbit/s). The blend of the two modes e…
/ohos5.0/drivers/interface/display/composer/v1_0/
H A DDisplayComposerType.idl230 BLEND_BUTT /**< Invalid blend type */
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/display_composer_v1_0/foo/display/composer/v1_0/
H A DDisplayComposerType.idl230 BLEND_BUTT /**< Invalid blend type */
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/display_composer_v1_1/foo/display/composer/v1_0/
H A DDisplayComposerType.idl230 BLEND_BUTT /**< Invalid blend type */

12