| 123 | |
| 124 | template <vkb::BindingType bindingType> |
| 125 | inline Node<bindingType> *Node<bindingType>::get_parent() |
| 126 | { |
| 127 | if constexpr (bindingType == vkb::BindingType::Cpp) |
| 128 | { |
| 129 | return parent; |
| 130 | } |
| 131 | else |
| 132 | { |
| 133 | return reinterpret_cast<NodeC *>(parent); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | template <vkb::BindingType bindingType> |
| 138 | inline vkb::sg::Transform &Node<bindingType>::get_transform() |
no outgoing calls
no test coverage detected