chore: format everything

This commit is contained in:
Tropical
2026-03-30 02:13:59 -05:00
parent 470ddf959d
commit c9b90cae2c
463 changed files with 12748 additions and 11285 deletions

View File

@@ -56,9 +56,7 @@ int glGenLists(int count) { return RenderManager.CBuffCreate(count); }
void glNewList(int index, int mode) { RenderManager.CBuffStart(index); }
void glEndList(int vertexCount) {
RenderManager.CBuffEnd();
}
void glEndList(int vertexCount) { RenderManager.CBuffEnd(); }
void glCallList(int index) { RenderManager.CBuffCall(index); }
@@ -186,9 +184,7 @@ void glAlphaFunc(int func, float param) {
RenderManager.StateSetAlphaFunc(func, param);
}
void glDepthFunc(int func) {
RenderManager.StateSetDepthFunc(func);
}
void glDepthFunc(int func) { RenderManager.StateSetDepthFunc(func); }
void glTexParameteri(int target, int param, int value) {
RenderManager.TextureSetParam(param, value);