mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-12-26 15:06:28 +01:00
Implemented
This commit is contained in:
parent
bd58786f94
commit
abeced384d
2 changed files with 1 additions and 9 deletions
|
@ -13,7 +13,6 @@ import com.jozufozu.flywheel.backend.gl.GlFence;
|
|||
import com.jozufozu.flywheel.backend.gl.error.GlError;
|
||||
import com.jozufozu.flywheel.backend.gl.error.GlException;
|
||||
import com.jozufozu.flywheel.util.StringUtil;
|
||||
import com.jozufozu.flywheel.util.Unimplemented;
|
||||
|
||||
|
||||
public class PersistentGlBuffer extends GlBuffer implements Mappable {
|
||||
|
@ -69,7 +68,7 @@ public class PersistentGlBuffer extends GlBuffer implements Mappable {
|
|||
|
||||
@Override
|
||||
public void upload(ByteBuffer directBuffer) {
|
||||
throw new Unimplemented("FIXME: Nothing calls #upload on a persistent buffer as of 12/10/2021.");
|
||||
throw new UnsupportedOperationException("FIXME: Nothing calls #upload on a persistent buffer as of 12/10/2021.");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
package com.jozufozu.flywheel.util;
|
||||
|
||||
public class Unimplemented extends RuntimeException {
|
||||
public Unimplemented(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue