Move OpenGL frame to ARGB conversion to processing threads Move video exporting to processing threads Skip creation of BufferedImage and instead use ByteBuffer with ARGB content directly
6 lines
101 B
Java
6 lines
101 B
Java
package eu.crushedpixel.replaymod.video.rendering;
|
|
|
|
public interface Frame {
|
|
int getFrameId();
|
|
}
|