This commit is contained in:
Isuru Samarathunga
2025-10-14 02:58:39 +05:30
parent 58f2190199
commit 0f557eb010
3 changed files with 8 additions and 1 deletions

View File

@ -326,6 +326,11 @@ namespace ia::iae
return Renderer::s_state.ActiveCamera;
}
Vec2 Engine::GetRendererScalingFactor()
{
return Renderer::s_state.SceneScaleFactor;
}
Handle Engine::CreateGeometry(IN CONST Vector<GeometryVertex> &vertices, IN CONST Vector<INT32> &indices)
{
return (Handle) Renderer::CreateGeometry(vertices, indices);