/ohos5.0/foundation/arkui/ace_engine/frameworks/core/image/apng/ |
H A D | apng_image_player.cpp | 168 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 D | apng_image_player.h | 83 ImageBlendOperation blend = ImageBlendNone; member
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-universal-attributes-image-effect-sys.md | 27 …meter type.<br>When the parameter type is **BlendMode**, it indicates the blend mode.<br>Default v… 28 …blend mode is implemented offscreen.<br>Default value: **BlendApplyType.FAST**<br>**NOTE**<br>1. W…
|
H A D | ts-universal-attributes-image-effect.md | 176 Applies a color blend effect to the component. 188 …md#color) \| string \| [Resource](ts-types.md#resource) | Yes | Color to blend with the component… 240 …blend 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 D | drawing__types_8h.md | 71 …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 D | drawing__color__filter_8h.md | 24 …md#oh_drawing_blendmode)) | Creates an **OH_Drawing_ColorFilter** object with a given blend mode.|
|
H A D | drawing__brush_8h.md | 37 …rawing_blendmode)) | Sets a blender for a brush. The blender implements the specified blend mode.|
|
H A D | drawing__pen_8h.md | 62 …drawing_blendmode)) | Sets a blender for a pen. The blender implements the specified blend mode. |
|
H A D | drawing__canvas_8h.md | 50 …_drawing_blendmode) blendMode) | Fills the entire canvas with the specified color and blend mode.|
|
H A D | _drawing.md | 183 …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 D | display_vgu.h | 271 …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 D | core3d_dm_df.frag | 94 // 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 D | gltf2_importer.h | 105 SingleShaderData blend; member
|
H A D | gltf2_importer.cpp | 1661 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 D | render_backend_gles.cpp | 2896 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() 2943 … blend.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 D | render_system.h | 133 SingleShaderData blend; member
|
H A D | render_system.cpp | 466 …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 D | datepicker_column_pattern.cpp | 278 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 D | glossary.md | 87 … 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 D | textpicker_column_pattern.cpp | 321 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 D | driver-peripherals-display-vdi-des.md | 81 …| int32_t SetLayerBlendType(uint32_t devId, uint32_t layerId, BlendType type) | Sets the blend typ…
|
H A D | driver-platform-mipicsi-des.md | 8 …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 D | DisplayComposerType.idl | 230 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 D | DisplayComposerType.idl | 230 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 D | DisplayComposerType.idl | 230 BLEND_BUTT /**< Invalid blend type */
|