Searched defs:ClearValue (Results 1 - 3 of 3) sorted by relevance
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_base_xml_config.h | 62 void ClearValue() in ClearValue() function
|
/foundation/window/window_manager/utils/include/ |
H A D | xml_config_base.h | 62 void ClearValue() in ClearValue() function
|
/foundation/graphic/graphic_3d/lume/LumeRender/api/render/device/ |
H A D | pipeline_state_desc.h | 675 union ClearValue { union 678 constexpr explicit ClearValue(const ClearColorValue& color) : color { color } {}; in ClearValue() function 679 constexpr explicit ClearValue(const ClearDepthStencilValue& depthStencil) : depthStencil { depthStencil } {}; in ClearValue() function 680 constexpr ClearValue(float r, float g, float b, float a) : color { r, g, b, a } {}; in ClearValue() function 681 constexpr ClearValue(int32_t r, int32_t g, int32_t b, int32_t a) : color { r, g, b, a } {}; in ClearValue() function 682 constexpr ClearValue(uint32_t r, uint32_t g, uint32_t b, uint32_t a) : color { r, g, b, a } {}; in ClearValue() function 683 constexpr ClearValue(float depth, uint32_t stencil) : depthStencil { depth, stencil } {}; in ClearValue() function [all...] |
Completed in 4 milliseconds