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
36
37
38
39
|
package gl4java.drawable;
import gl4java.*;
import gl4java.awt.*;
public class DummyGLDrawableFactory extends GLDrawableFactory {
DummyGLDrawableFactory() {
}
public GLAnimCanvas createGLAnimCanvas(GLCapabilities capabilities,
int width,
int height,
String glName,
String gluName)
{
GLCapabilities own = null;
try {
own = (GLCapabilities) capabilities.clone();
} catch (Exception ex) { System.out.println(ex); own=capabilities; }
return new GLAnimCanvas(own, width, height, glName, gluName);
}
public GLCanvas createGLCanvas(GLCapabilities capabilities,
int width,
int height,
String glName,
String gluName)
{
GLCapabilities own = null;
try {
own = (GLCapabilities) capabilities.clone();
} catch (Exception ex) { System.out.println(ex); own=capabilities; }
return new GLCanvas(own, width, height, glName, gluName);
}
}
|