2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 07:07:42 +00:00

IRenderer/CBooRenderer: Add parameter names to function prototypes

Makes the interface more self-documenting and allows IDEs to perform
better parameter introspection
This commit is contained in:
Lioncash
2020-03-30 00:34:35 -04:00
parent 111f0c3d3a
commit 6ae935924b
3 changed files with 53 additions and 51 deletions

View File

@@ -1056,9 +1056,9 @@ std::pair<zeus::CVector2f, zeus::CVector2f> CBooRenderer::SetViewportOrtho(bool
void CBooRenderer::SetClippingPlanes(const zeus::CFrustum& frustum) { x44_frustumPlanes = frustum; }
void CBooRenderer::SetViewport(int l, int b, int w, int h) {
CGraphics::SetViewport(l, b, w, h);
CGraphics::SetScissor(l, b, w, h);
void CBooRenderer::SetViewport(int left, int bottom, int width, int height) {
CGraphics::SetViewport(left, bottom, width, height);
CGraphics::SetScissor(left, bottom, width, height);
}
void CBooRenderer::SetDebugOption(EDebugOption, int) {}