blob: 5ac1a8cbe2d311bde7b78134f8ddb0e56d684997 (
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
|
public boolean isGL2();
public boolean isGLES1();
public boolean isGLES2();
public boolean isGLES();
public boolean isGL2ES1();
public boolean isGL2ES2();
public GL2 getGL2() throws GLException;
public GLES1 getGLES1() throws GLException;
public GLES2 getGLES2() throws GLException;
public GL2ES1 getGL2ES1() throws GLException;
public GL2ES2 getGL2ES2() throws GLException;
public boolean matchesProfile();
public boolean matchesProfile(String test_profile);
|