| 102 | } |
| 103 | |
| 104 | View::View(Engine::BaseEngine& e) |
| 105 | : m_Engine(e) |
| 106 | { |
| 107 | assert(e.getJobManager().isSameThread()); |
| 108 | m_IsHidden = false; |
| 109 | m_pParent = nullptr; |
| 110 | |
| 111 | m_Translation = Math::float2(0, 0); |
| 112 | m_Size = Math::float2(1, 1); |
| 113 | m_Alignment = EAlign::A_TopLeft; |
| 114 | |
| 115 | ViewUtil::PosUvVertex::init(); |
| 116 | } |
| 117 | |
| 118 | View::~View() |
| 119 | { |
nothing calls this directly
no test coverage detected