The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

aux/android: Expose native pointer from MonadoView

+8
+8
src/xrt/auxiliary/android/src/main/java/org/freedesktop/monado/auxiliary/MonadoView.java
··· 136 136 return displayMetrics; 137 137 } 138 138 139 + @Keep 140 + public long getNativePointer() { 141 + if (nativeCounterpart == null) { 142 + return 0; 143 + } 144 + return nativeCounterpart.getNativePointer(); 145 + } 146 + 139 147 private void createSurfaceInActivity() { 140 148 createSurfaceInActivity(false); 141 149 }