Home
last modified time | relevance | path

Searched refs:colorProxy_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/kits/js/src/
H A DLightJS.cpp143 colorProxy_.reset(); in DisposeNative()
208 if (colorProxy_ == nullptr) { in GetColor()
209 colorProxy_ = BASE_NS::make_unique<ColorProxy>(ctx, node->Color()); in GetColor()
211 return colorProxy_->Value(); in GetColor()
220 if (colorProxy_ == nullptr) { in SetColor()
221 colorProxy_ = BASE_NS::make_unique<ColorProxy>(ctx, node->Color()); in SetColor()
223 colorProxy_->SetValue(obj); in SetColor()
/ohos5.0/foundation/graphic/graphic_3d/kits/js/include/
H A DLightJS.h68 BASE_NS::unique_ptr<ColorProxy> colorProxy_; variable