HomeSort by relevance Sort by last modified time
    Searched refs:AndroidGraphics (Results 1 - 6 of 6) sorted by null

  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidApplication.java 65 protected AndroidGraphics graphics;
135 graphics = new AndroidGraphics(this, config, config.resolutionStrategy == null ? new FillResolutionStrategy()
263 boolean isContinuousEnforced = AndroidGraphics.enforceContinuousRendering;
266 AndroidGraphics.enforceContinuousRendering = true;
279 AndroidGraphics.enforceContinuousRendering = isContinuousEnforced;
AndroidFragmentApplication.java 56 protected AndroidGraphics graphics;
161 graphics = new AndroidGraphics(this, config, config.resolutionStrategy == null ? new FillResolutionStrategy()
214 boolean isContinuousEnforced = AndroidGraphics.enforceContinuousRendering;
217 AndroidGraphics.enforceContinuousRendering = true;
232 AndroidGraphics.enforceContinuousRendering = isContinuousEnforced;
AndroidDaydream.java 66 protected AndroidGraphics graphics;
124 graphics = new AndroidGraphics(this, config, config.resolutionStrategy == null ? new FillResolutionStrategy()
AndroidGraphicsLiveWallpaper.java 35 /** A subclass of {@link AndroidGraphics} specialized for live wallpaper applications.
38 public final class AndroidGraphicsLiveWallpaper extends AndroidGraphics {
59 // Grabbed from AndroidGraphics superclass and modified to override
142 Gdx.app.log("AndroidGraphics", "waiting for resume synchronization failed!");
192 Gdx.app.log("AndroidGraphics", "resumed");
229 Gdx.app.log("AndroidGraphics", "paused");
236 Gdx.app.log("AndroidGraphics", "destroyed");
AndroidGraphics.java 65 public class AndroidGraphics implements Graphics, Renderer {
67 private static final String LOG_TAG = "AndroidGraphics";
70 * {@link AndroidGraphics#pause()} they <b>MUST</b> enforce continuous rendering. If not, {@link #onDrawFrame(GL10)} will not
72 * {@link AndroidGraphics#pause} variable never be set to false. As a result, the {@link AndroidGraphics#pause()} method will
110 public AndroidGraphics (AndroidApplicationBase application, AndroidApplicationConfiguration config,
115 public AndroidGraphics (AndroidApplicationBase application, AndroidApplicationConfiguration config,
AndroidInput.java 572 View view = ((AndroidGraphics)app.getGraphics()).getView();
575 manager.showSoftInput(((AndroidGraphics)app.getGraphics()).getView(), 0);
577 manager.hideSoftInputFromWindow(((AndroidGraphics)app.getGraphics()).getView().getWindowToken(), 0);

Completed in 40 milliseconds