(View) Fixed missing implementation of GetSize

Former-commit-id: 0953fb5079448035fc395ad2fd38535d27f08fb6
This commit is contained in:
Lynix 2015-03-18 21:57:02 +01:00
parent 4b09757f63
commit cbf3b2cf4e
1 changed files with 5 additions and 0 deletions

View File

@ -113,6 +113,11 @@ const NzMatrix4f& NzView::GetProjectionMatrix() const
return m_projectionMatrix;
}
const NzVector2f& NzView::GetSize() const
{
return m_size;
}
const NzRenderTarget* NzView::GetTarget() const
{
return m_target;