Files
ReplayModCinematic/src/main/java/eu/crushedpixel/replaymod/video/rendering/Frame.java
johni0702 7fd429e25f Rework rendering pipeline to make better use of multithreading
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
2015-07-15 14:23:43 +02:00

6 lines
101 B
Java

package eu.crushedpixel.replaymod.video.rendering;
public interface Frame {
int getFrameId();
}