Home
last modified time | relevance | path

Searched refs:IsValidComponentId (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/
H A Dskinning_system.cpp270 if (row.IsValidComponentId(RENDER_MESH_INDEX)) { in UpdateSkin()
296 const bool hasPrev = row.IsValidComponentId(PREV_JOINT_MATS_INDEX); in Update()
297 if (hasPrev && row.IsValidComponentId(JOINT_MATS_INDEX)) { in Update()
346 … if (!row.IsValidComponentId(PREV_JOINT_MATS_INDEX) && row.IsValidComponentId(JOINT_MATS_INDEX)) { in Update()
H A Dnode_system.cpp1209 if (row->IsValidComponentId(WORLD_INDEX)) { in Update()
1230 if (!row.IsValidComponentId(PREV_WORLD_INDEX) && row.IsValidComponentId(WORLD_INDEX)) { in Update()
1261 if (row->IsValidComponentId(LOCAL_INDEX)) { in CollectChangedNodes()
1335 if (nodeInfo.isEffectivelyEnabled && row->IsValidComponentId(LOCAL_INDEX)) { in UpdateTransformations()
1342 if (row->IsValidComponentId(WORLD_INDEX)) { in UpdateTransformations()
1384 const bool hasPrev = row.IsValidComponentId(PREV_WORLD_INDEX); in UpdatePreviousWorldMatrices()
1385 if (hasPrev && row.IsValidComponentId(WORLD_INDEX)) { in UpdatePreviousWorldMatrices()
H A Drender_preprocessor_system.cpp299 const uint64_t layerMask = !row.IsValidComponentId(LC) ? LayerConstants::DEFAULT_LAYER_MASK in GatherSortData()
362 bool hasJoints = row.IsValidComponentId(JMC); in GatherSortData()
393 …auto skin = (row.IsValidComponentId(SC)) ? skinManager_->Read(row.components[SC])->skin : Entity {… in GatherSortData()
H A Drender_system.cpp1542 const uint64_t layerMask = !row->IsValidComponentId(RQ_L) ? LayerConstants::DEFAULT_LAYER_MASK in ProcessRenderMeshBatch()
1565 const uint64_t layerMask = !row->IsValidComponentId(RQ_L) in ProcessRenderMeshBatch()
1582 if (row->IsValidComponentId(RQ_JM) && row->IsValidComponentId(RQ_PJM)) { in ProcessRenderMeshBatch()
1613 … const uint64_t layerMask = !row->IsValidComponentId(RQ_L) ? LayerConstants::DEFAULT_LAYER_MASK in ProcessSingleRenderMesh()
1618 if (row->IsValidComponentId(RQ_JM) && row->IsValidComponentId(RQ_PJM)) { in ProcessSingleRenderMesh()
2168 const uint64_t layerMask = !row.IsValidComponentId(3u) ? LayerConstants::DEFAULT_LAYER_MASK in ProcessLights()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/ecshelper/ComponentTools/
H A Dcomponent_query.h103 bool IsValidComponentId(size_t index) const; in CORE_BEGIN_NAMESPACE()
H A Dcomponent_query.cpp40 bool ComponentQuery::ResultRow::IsValidComponentId(size_t index) const in IsValidComponentId() function in ComponentQuery::ResultRow