Exemplo n.º 1
0
 public static boolean isDeviceSupported() {
   try {
     AndEngine.checkDeviceSupported();
     return true;
   } catch (final DeviceNotSupportedException e) {
     return false;
   }
 }
Exemplo n.º 2
0
 private static void checkOpenGLSupport() throws DeviceNotSupportedException {
   AndEngine.checkEGLConfigChooserSupport();
 }
Exemplo n.º 3
0
  public static void checkDeviceSupported() throws DeviceNotSupportedException {
    AndEngine.checkCodePathSupport();

    AndEngine.checkOpenGLSupport();
  }