Rework rendering

Adds default, stereoscopic, tiling, cubic and equirectangular frame rendering
This commit is contained in:
johni0702
2015-05-23 14:56:11 +02:00
parent 361ba73978
commit 18f22f57d0
30 changed files with 2167 additions and 207 deletions

View File

@@ -0,0 +1,7 @@
package eu.crushedpixel.replaymod.interpolation;
public interface Interpolation<T> {
void prepare();
T getPoint(float position);
void addPoint(T pos);
}