| 265 | } |
| 266 | |
| 267 | void ProtectedNode::reorderProtectedChild(ax::Node* child, int localZOrder) |
| 268 | { |
| 269 | AXASSERT(child != nullptr, "Child must be non-nil"); |
| 270 | _reorderProtectedChildDirty = true; |
| 271 | child->updateOrderOfArrival(); |
| 272 | child->setLocalZOrder(localZOrder); |
| 273 | } |
| 274 | |
| 275 | void ProtectedNode::visit(Renderer* renderer, const Mat4& parentTransform, uint32_t parentFlags) |
| 276 | { |
nothing calls this directly
no test coverage detected