Home
last modified time | relevance | path

Searched refs:ConstructProperty (Results 1 - 23 of 23) sorted by relevance

/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/engine/
H A Dintf_engine_input_property_manager.h31 virtual IProperty::Ptr ConstructProperty(BASE_NS::string_view name) = 0;
40 Property<Type> ConstructProperty(BASE_NS::string_view name) in ConstructProperty() function in IEngineInputPropertyManager
42 return Property<Type>(ConstructProperty(name)); in ConstructProperty()
H A Dintf_engine_value_manager.h56 virtual IProperty::Ptr ConstructProperty(BASE_NS::string_view name) const = 0;
62 Property<Type> ConstructProperty(BASE_NS::string_view name) in ConstructProperty() function in IEngineValueManager
64 return Property<Type>(ConstructProperty(name)); in ConstructProperty()
69 return ArrayProperty<Type>(ConstructProperty(name)); in ConstructArrayProperty()
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/property/
H A Dconstruct_property.h55 Property<T> ConstructProperty(IObjectRegistry& obr, BASE_NS::string_view name, const T& value = {}, in ConstructProperty() function
71 Property<T> ConstructProperty( in ConstructProperty() function
74 return ConstructProperty(GetObjectRegistry(), name, value, flags);
78 Property<typename T::TypePtr> ConstructProperty( in ConstructProperty() function
/foundation/graphic/graphic_3d/lume/metaobject/test/src/api/
H A DDeferredCallbackTest.cpp120 auto p = META_NS::ConstructProperty<int>(registry, "P", {}); in HWTEST_F()
151 auto p = META_NS::ConstructProperty<int>(registry, "p", {}); in HWTEST_F()
178 auto p = META_NS::ConstructProperty<int>(registry, "P", {}); in HWTEST_F()
H A DFunctionTest.cpp114 auto p = ConstructProperty<int>(registry, "prop", 0); in HWTEST_F()
/foundation/graphic/graphic_3d/lume/metaobject/src/loaders/
H A Dcsv_string_resource_loader.cpp117 item.Metadata().AddProperty(ConstructProperty<BASE_NS::string>(keys->at(i), column.second[i])); in CreateStringResourceObject()
119 strings.Metadata().AddProperty(ConstructProperty<IObject::Ptr>(column.first, item)); in CreateStringResourceObject()
123 object.MetaProperty(ConstructProperty<IObject::Ptr>(options.targetPropertyName, strings)); in CreateStringResourceObject()
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dmaterial_impl.cpp528 auto c = META_NS::ConstructProperty<SCENE_NS::Color>(SCENE_NS::IMaterial::MAPPED_INPUTS_COLOR); in UpdateInputProperties()
541 auto s = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_NORMAL_SCALE); in UpdateInputProperties()
555 auto roughness = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_ROUGHNESS); in UpdateInputProperties()
563 auto metallic = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_METALLIC); in UpdateInputProperties()
571 auto reflectance = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_REFLECTANCE); in UpdateInputProperties()
580 auto colorRGB = META_NS::ConstructProperty<SCENE_NS::Color>(SCENE_NS::IMaterial::MAPPED_INPUTS_COLOR); in UpdateInputProperties()
588 auto glossiness = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_GLOSSINESS); in UpdateInputProperties()
601 auto c = META_NS::ConstructProperty<SCENE_NS::Color>(SCENE_NS::IMaterial::MAPPED_INPUTS_COLOR); in UpdateInputProperties()
609 auto p = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_INTENSITY); in UpdateInputProperties()
621 auto p = META_NS::ConstructProperty<floa in UpdateInputProperties()
[all...]
H A Dresource_container.cpp33 if (auto p = META_NS::ConstructProperty<META_NS::IContainer::Ptr>("Resources")) {
H A Decs_object.cpp219 prop = META_NS::ConstructProperty<BASE_NS::string>("Name"); in UpdateMetaCache()
234 AddProperty(m->valueManager->ConstructProperty(v->GetName())); in UpdateMetaCache()
H A Dnode_impl.cpp911 auto p = META_NS::ConstructProperty<uint32_t>(LIFECYCLE_PROPERTY_NAME, 0, META_NS::DEFAULT_PROPERTY_FLAGS | META_NS::ObjectFlagBits::INTERNAL); in GetLifecycleInfo()
/foundation/graphic/graphic_3d/lume/metaobject/test/src/
H A Dutil.h30 return ConstructProperty<T>(name, value);
/foundation/graphic/graphic_3d/lume/metaobject/src/engine/
H A Dengine_input_property_manager.h33 IProperty::Ptr ConstructProperty(BASE_NS::string_view name) override;
H A Dengine_input_property_manager.cpp49 IProperty::Ptr EngineInputPropertyManager::ConstructProperty(BASE_NS::string_view name) in ConstructProperty() function in Internal::EngineInputPropertyManager
H A Dengine_value_manager.h48 IProperty::Ptr ConstructProperty(BASE_NS::string_view name) const override;
H A Dengine_value_manager.cpp233 IProperty::Ptr EngineValueManager::ConstructProperty(BASE_NS::string_view name) const in ConstructProperty() function in Internal::EngineValueManager
/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dmeta_object.cpp77 objectContext_ = ConstructProperty<IObjectContext::Ptr>(context->GetObjectRegistry(), "ObjectContext", context); in PropertyObjectContext()
92 objectContext_ = ConstructProperty<IObjectContext::Ptr>(context->GetObjectRegistry(), "ObjectContext", context); in PropertyObjectContext()
/foundation/graphic/graphic_3d/3d_scene_adapter/src/
H A Dscene_adapter.cpp261 doc->AddProperty(META_NS::ConstructProperty<IntfPtr>("RenderContext", nullptr, flags)); in InitEngine()
262 doc->AddProperty(META_NS::ConstructProperty<IntfPtr>("EngineQueue", nullptr, flags)); in InitEngine()
263 doc->AddProperty(META_NS::ConstructProperty<IntfPtr>("AppQueue", nullptr, flags)); in InitEngine()
/foundation/graphic/graphic_3d/kits/js/src/
H A DMaterialJS.cpp220 ->AddProperty(META_NS::ConstructProperty<IntfPtr>( in SetColorShader()
269 ->AddProperty(META_NS::ConstructProperty<IntfPtr>( in GetColorShader()
H A DBaseObjectJS.cpp195 wrapper = ConstructProperty<SharedPtrIInterface>( in StoreJsObj()
H A DSceneJS.cpp883 params->AddProperty(META_NS::ConstructProperty<IntfPtr>( in CreateShader()
886 params->AddProperty(META_NS::ConstructProperty<BASE_NS::string>( in CreateShader()
/foundation/graphic/graphic_3d/lume/metaobject/test/src/base/
H A DCaptureTest.cpp190 auto p = META_NS::ConstructProperty<int>(registry, "P1", 0); in HWTEST_F()
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/ext/
H A Dimplementation_macros.h48 [] { return ::META_NS::IProperty::Ptr(::META_NS::ConstructProperty<type>(#name, defaultValue, flags)); }, \
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/api/internal/
H A Dobject_api.h371 meta->AddProperty(ConstructProperty<PropertyValueType>(propertyName, propertyValue)); in MetaProperty()

Completed in 15 milliseconds