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

    AndEngine.checkOpenGLSupport();
  }