Searched refs:WebGL (Results 1 - 11 of 11) sorted by relevance
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
H A D | GLVersion.java | 45 else if (appType == Application.ApplicationType.WebGL) this.type = Type.WebGL; 51 } else if (type == Type.WebGL) { 52 //WebGL<space><version number><space><vendor-specific information> 53 extractVersion("WebGL (\\d(\\.\\d){0,2})", versionString); 150 WebGL, enum constant in enum:GLVersion.Type
|
H A D | FloatTextureData.java | 63 || Gdx.app.getType() == ApplicationType.WebGL) { 68 // GLES and WebGL defines texture format by 3rd and 8th argument, 79 // hence we need to use GL_RGBA32F there (this constant is unavailable in GLES/WebGL)
|
H A D | MipMapGenerator.java | 54 if (Gdx.app.getType() == ApplicationType.Android || Gdx.app.getType() == ApplicationType.WebGL
|
/external/libgdx/gdx/src/com/badlogic/gdx/ |
H A D | Application.java | 102 Android, Desktop, HeadlessDesktop, Applet, WebGL, iOS
enum constant in enum:Application.ApplicationType
|
H A D | Graphics.java | 53 AndroidGL, LWJGL, WebGL, iOSGL, JGLFW, Mock, LWJGL3 enum constant in enum:Graphics.GraphicsType
|
H A D | Net.java | 208 if (followRedirects == true || Gdx.app.getType() != ApplicationType.WebGL) {
211 throw new IllegalArgumentException("Following redirects can't be disabled using the GWT/WebGL backend!");
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers/src/com/badlogic/gdx/controllers/ |
H A D | Controllers.java | 93 } else if (type == ApplicationType.WebGL) {
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/ |
H A D | GwtGraphics.java | 90 glVersion = new GLVersion(Application.ApplicationType.WebGL, versionString, vendorString, rendererString); 139 return GraphicsType.WebGL; 412 // Contrary to regular OpenGL, WebGL extensions need to be explicitly enabled before they can be used. See
|
H A D | GwtApplication.java | 174 root.add(new Label("Sorry, your browser doesn't seem to support WebGL")); 400 return ApplicationType.WebGL;
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
H A D | BufferUtilsTest.java | 118 if (Gdx.app.getType() != ApplicationType.WebGL) { // gwt throws: NYI: Numbers.doubleToRawLongBits
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ |
H A D | Stage.java | 219 if (type == ApplicationType.Desktop || type == ApplicationType.Applet || type == ApplicationType.WebGL)
|
Completed in 109 milliseconds