Loading vr/java/com/google/vr/platform/DeviceInfo.java +2 −0 Original line number Diff line number Diff line package com.google.vr.platform; import android.annotation.UnsupportedAppUsage; import android.os.SystemProperties; /** Loading @@ -13,6 +14,7 @@ public class DeviceInfo { /** * Returns true if this device boots directly in VR mode. */ @UnsupportedAppUsage public static boolean getVrBoot() { return SystemProperties.getBoolean(VR_MODE_BOOT, false); } Loading vr/java/com/google/vr/platform/Dvr.java +3 −0 Original line number Diff line number Diff line package com.google.vr.platform; import android.annotation.UnsupportedAppUsage; /** * Class to load the dvr api. * @hide Loading @@ -10,6 +12,7 @@ public class Dvr { * * @return A Long object describing the handle returned by dlopen. */ @UnsupportedAppUsage public static Long loadLibrary() { // Load a thin JNI library that runs dlopen on request. System.loadLibrary("dvr_loader"); Loading Loading
vr/java/com/google/vr/platform/DeviceInfo.java +2 −0 Original line number Diff line number Diff line package com.google.vr.platform; import android.annotation.UnsupportedAppUsage; import android.os.SystemProperties; /** Loading @@ -13,6 +14,7 @@ public class DeviceInfo { /** * Returns true if this device boots directly in VR mode. */ @UnsupportedAppUsage public static boolean getVrBoot() { return SystemProperties.getBoolean(VR_MODE_BOOT, false); } Loading
vr/java/com/google/vr/platform/Dvr.java +3 −0 Original line number Diff line number Diff line package com.google.vr.platform; import android.annotation.UnsupportedAppUsage; /** * Class to load the dvr api. * @hide Loading @@ -10,6 +12,7 @@ public class Dvr { * * @return A Long object describing the handle returned by dlopen. */ @UnsupportedAppUsage public static Long loadLibrary() { // Load a thin JNI library that runs dlopen on request. System.loadLibrary("dvr_loader"); Loading