readd override thing

This commit is contained in:
mcrcortex
2025-07-07 12:23:09 +10:00
parent 8f3fa2e7f2
commit 7551ca3484
2 changed files with 3 additions and 0 deletions

View File

@@ -102,4 +102,6 @@ public abstract class Viewport <A extends Viewport<A>> {
return (A) this; return (A) this;
} }
public abstract GlBuffer getRenderList();
} }

View File

@@ -26,6 +26,7 @@ public class MDICViewport extends Viewport<MDICViewport> {
this.positionScratchBuffer.free(); this.positionScratchBuffer.free();
} }
@Override
public GlBuffer getRenderList() { public GlBuffer getRenderList() {
return this.indirectLookupBuffer; return this.indirectLookupBuffer;
} }