Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_3d/kits/js/src/
H A DEnvironmentJS.cpp102 diffuseFactor_.reset(); in DisposeNative()
109 diffuseFactor_.reset(); in DisposeNative()
381 if (diffuseFactor_ == nullptr) { in GetIndirectDiffuseFactor()
382 diffuseFactor_ = BASE_NS::make_unique<Vec4Proxy>(ctx, node->IndirectDiffuseFactor()); in GetIndirectDiffuseFactor()
384 return *diffuseFactor_; in GetIndirectDiffuseFactor()
394 if (diffuseFactor_ == nullptr) { in SetIndirectDiffuseFactor()
395 diffuseFactor_ = BASE_NS::make_unique<Vec4Proxy>(ctx, node->IndirectDiffuseFactor()); in SetIndirectDiffuseFactor()
397 diffuseFactor_->SetValue(obj); in SetIndirectDiffuseFactor()
/ohos5.0/foundation/graphic/graphic_3d/kits/js/include/
H A DEnvironmentJS.h86 BASE_NS::unique_ptr<Vec4Proxy> diffuseFactor_; variable