blob: d3508119cc2ce1e869ddd28c736a8794a8d42702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package jake2.render.opengl;
import java.util.List;
import javax.media.nativewindow.util.Dimension;
import jake2.qcommon.xcommand_t;
import com.jogamp.newt.MonitorMode;
public interface GLDriver {
boolean init(int xpos, int ypos);
int setMode(Dimension dim, int mode, boolean fullscreen);
void shutdown();
void beginFrame(float camera_separation);
void endFrame();
void appActivate(boolean activate);
void enableLogging(boolean enable);
void logNewFrame();
List<MonitorMode> getModeList();
void updateScreen(xcommand_t callback);
void screenshot();
}
|