GithubHelp home page GithubHelp logo

sxrsdk / sxrsdk Goto Github PK

View Code? Open in Web Editor NEW
17.0 12.0 21.0 1.07 GB

License: Apache License 2.0

Java 36.54% CSS 0.01% HTML 0.03% JavaScript 5.83% C++ 48.70% GLSL 0.59% Makefile 0.11% CMake 0.05% C 7.56% Objective-C 0.37% Shell 0.02% Python 0.19%

sxrsdk's Introduction

sxrsdk's People

Contributors

apjagdale avatar asg024 avatar chenchao1407 avatar danke-sra avatar dankex avatar deepak-rawat avatar dknaan avatar dnvasilev avatar ejsamsung avatar gaurav-mcl avatar guodongrong avatar j0nreynolds avatar jason2kim avatar jonshemitz avatar julianafigueira avatar lcbasu avatar liahim avatar liaxim avatar mingsong avatar mwitchwilliams avatar nathanalmeida avatar noladonato avatar parthmehta209s avatar pnemonic78 avatar ragner avatar rahul27 avatar roshanch avatar spodila1 avatar sushantojal avatar tflynnt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

sxrsdk's Issues

SXRTextViewNode setTextColor sometime ignored, regardless of backend used

What I'm trying to do:

  • Create 10 numbers in space and give them blue color.

What I expected:

  • Have 10 numbers in space and each of them is painted blue.

What I got:

  • Sometime one of the number is not rendered in blue, but white, that mean the setTextColor is ignored.

The code in question
The loop

for (int i = 1; i < 10; i++) {
            float originZ = -i * 4.0f;
            SXRTextViewNode nodeI = createTextNode(String.format("%d", i), originZ);
            nodeI.getRenderData().setRenderingOrder(100 - i);
            numberList.add(nodeI);
            mainScene.addNode(nodeI);
        }

And

private SXRTextViewNode createTextNode(String text, float originZ) {
        SXRTextViewNode textObj = new SXRTextViewNode(sxrContext, 1.0f, 1.0f, text);
        textObj.setTypeface(sxrContext, "Open_Sans/OpenSans-Regular.ttf", PLAIN);
        textObj.setRefreshFrequency(SXRTextViewNode.IntervalFrequency.HIGH);

        textObj.getTransform().setPosition(0f, 4f, originZ);
        textObj.setTextSize(16);
        textObj.setTextColor(Color.BLUE);
        textObj.setBackGround(null);

        SXRTextViewNode textBackObj = new SXRTextViewNode(sxrContext, 1.0f, 1.0f, text);
        textBackObj.getTransform().setRotationByAxis(180f, 0, 1, 0);
        textBackObj.getTransform().setPosition(0, 0, 0);
        textBackObj.setTextSize(16);
        textBackObj.setTextColor(Color.RED);
        textBackObj.setBackGround(null);
        textObj.addChildObject(textBackObj);
        return textObj;
    }

Note:

  • I tested in monoscopic and oculus and the problem appears in both of the backend. I haven't had a throughout look and a clear understanding of the engine. Do you have any idea what's causing this bug so I can fix them and make a PR?

build new libassimp.so for sxrsdk

I'm trying to rebuild libassimp.so for sxrsdk, when replace the prebuilt libassimp.so, I met link errors. can you share the original build flags for libassimp.so?

Oculus GO crash on back key in Image::clear

Latest master, launched sxr-controller, back pressed, after a short delay (black screen) app crashed:

12-10 08:54:23.002  3844  3844 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
12-10 08:54:23.002  3844  3844 F DEBUG   : Build fingerprint: 'oculus/vr_pacific/pacific:7.1.2/N2G48H/178890.1690.2:user/release-keys'
12-10 08:54:23.002  3844  3844 F DEBUG   : Revision: '0'
12-10 08:54:23.002  3844  3844 F DEBUG   : ABI: 'arm'
12-10 08:54:23.003  3844  3844 F DEBUG   : pid: 3738, tid: 3786, name: GLThread 85  >>> com.samsungxr.sample.controller.oculus <<<
12-10 08:54:23.003  3844  3844 F DEBUG   : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0
12-10 08:54:23.003  3844  3844 F DEBUG   :     r0 00000000  r1 00000000  r2 cb5c1920  r3 00000000
12-10 08:54:23.003  3844  3844 F DEBUG   :     r4 00000004  r5 e66255a0  r6 00000004  r7 cb5bfd58
12-10 08:54:23.003  3844  3844 F DEBUG   :     r8 cb5bff60  r9 d9befc00  sl cb5bfe60  fp d9befc00
12-10 08:54:23.003  3844  3844 F DEBUG   :     ip cbadbd1c  sp cb5bfd50  lr cbaaecb1  pc e6a3c7d0  cpsr 200b0030
12-10 08:54:23.077  3844  3844 F DEBUG   : 
12-10 08:54:23.077  3844  3844 F DEBUG   : backtrace:
12-10 08:54:23.077  3844  3844 F DEBUG   :     #00 pc 000487d0  /system/lib/libc.so (pthread_mutex_trylock+87)
12-10 08:54:23.077  3844  3844 F DEBUG   :     #01 pc 0005fcad  /data/app/com.samsungxr.sample.controller.oculus-1/lib/arm/libc++_shared.so (_ZNSt6__ndk15mutex8try_lockEv+4)
12-10 08:54:23.077  3844  3844 F DEBUG   :     #02 pc 0028289f  /data/app/com.samsungxr.sample.controller.oculus-1/lib/arm/libsxrsdk.so (_ZN3sxr5Image5clearEP7_JNIEnv+26)
12-10 08:54:23.077  3844  3844 F DEBUG   :     #03 pc 00284ae5  /data/app/com.samsungxr.sample.controller.oculus-1/lib/arm/libsxrsdk.so (_ZN3sxr7Texture9clearDataEP7_JNIEnv+128)
12-10 08:54:23.077  3844  3844 F DEBUG   :     #04 pc 00284a39  /data/app/com.samsungxr.sample.controller.oculus-1/lib/arm/libsxrsdk.so (_ZN3sxr7TextureD2Ev+52)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #05 pc 00284b8d  /data/app/com.samsungxr.sample.controller.oculus-1/lib/arm/libsxrsdk.so (_ZN3sxr7TextureD0Ev+16)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #06 pc 0024b4db  /data/app/com.samsungxr.sample.controller.oculus-1/lib/arm/libsxrsdk.so (Java_com_samsungxr_NativeHybridObject_delete+50)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #07 pc 000ae819  /system/lib/libart.so (art_quick_generic_jni_trampoline+40)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #08 pc 000a9e41  /system/lib/libart.so (art_quick_invoke_stub_internal+64)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #09 pc 00431ffb  /system/lib/libart.so (art_quick_invoke_static_stub+226)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #10 pc 000b16a3  /system/lib/libart.so (_ZN3art9ArtMethod6InvokeEPNS_6ThreadEPjjPNS_6JValueEPKc+186)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #11 pc 00207911  /system/lib/libart.so (_ZN3art11interpreter34ArtInterpreterToCompiledCodeBridgeEPNS_6ThreadEPNS_9ArtMethodEPKNS_7DexFile8CodeItemEPNS_11ShadowFrameEPNS_6JValueE+200)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #12 pc 00201a71  /system/lib/libart.so (_ZN3art11interpreter6DoCallILb0ELb0EEEbPNS_9ArtMethodEPNS_6ThreadERNS_11ShadowFrameEPKNS_11InstructionEtPNS_6JValueE+432)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #13 pc 0042aae7  /system/lib/libart.so (MterpInvokeStatic+234)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #14 pc 0009ce14  /system/lib/libart.so (ExecuteMterpImpl+14612)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #15 pc 001e4c57  /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadEPKNS_7DexFile8CodeItemERNS_11ShadowFrameENS_6JValueEb+282)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #16 pc 001e970f  /system/lib/libart.so (_ZN3art11interpreter33ArtInterpreterToInterpreterBridgeEPNS_6ThreadEPKNS_7DexFile8CodeItemEPNS_11ShadowFrameEPNS_6JValueE+114)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #17 pc 00201a59  /system/lib/libart.so (_ZN3art11interpreter6DoCallILb0ELb0EEEbPNS_9ArtMethodEPNS_6ThreadERNS_11ShadowFrameEPKNS_11InstructionEtPNS_6JValueE+408)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #18 pc 0042a80f  /system/lib/libart.so (MterpInvokeDirect+270)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #19 pc 0009cd94  /system/lib/libart.so (ExecuteMterpImpl+14484)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #20 pc 001e4c57  /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadEPKNS_7DexFile8CodeItemERNS_11ShadowFrameENS_6JValueEb+282)
12-10 08:54:23.078  3844  3844 F DEBUG   :     #21 pc 001e970f  /system/lib/libart.so (_ZN3art11interpreter33ArtInterpreterToInterpreterBridgeEPNS_6ThreadEPKNS_7DexFile8CodeItemEPNS_11ShadowFrameEPNS_6JValueE+114)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #22 pc 00201a59  /system/lib/libart.so (_ZN3art11interpreter6DoCallILb0ELb0EEEbPNS_9ArtMethodEPNS_6ThreadERNS_11ShadowFrameEPKNS_11InstructionEtPNS_6JValueE+408)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #23 pc 0042a80f  /system/lib/libart.so (MterpInvokeDirect+270)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #24 pc 0009cd94  /system/lib/libart.so (ExecuteMterpImpl+14484)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #25 pc 001e4c57  /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadEPKNS_7DexFile8CodeItemERNS_11ShadowFrameENS_6JValueEb+282)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #26 pc 001e970f  /system/lib/libart.so (_ZN3art11interpreter33ArtInterpreterToInterpreterBridgeEPNS_6ThreadEPKNS_7DexFile8CodeItemEPNS_11ShadowFrameEPNS_6JValueE+114)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #27 pc 00201a59  /system/lib/libart.so (_ZN3art11interpreter6DoCallILb0ELb0EEEbPNS_9ArtMethodEPNS_6ThreadERNS_11ShadowFrameEPKNS_11InstructionEtPNS_6JValueE+408)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #28 pc 0042aae7  /system/lib/libart.so (MterpInvokeStatic+234)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #29 pc 0009ce14  /system/lib/libart.so (ExecuteMterpImpl+14612)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #30 pc 001e4c57  /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadEPKNS_7DexFile8CodeItemERNS_11ShadowFrameENS_6JValueEb+282)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #31 pc 001e9675  /system/lib/libart.so (_ZN3art11interpreter30EnterInterpreterFromEntryPointEPNS_6ThreadEPKNS_7DexFile8CodeItemEPNS_11ShadowFrameE+92)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #32 pc 00420df5  /system/lib/libart.so (artQuickToInterpreterBridge+748)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #33 pc 000ae893  /system/lib/libart.so (art_quick_to_interpreter_bridge+34)
12-10 08:54:23.079  3844  3844 F DEBUG   :     #34 pc 00008f47  /dev/ashmem/dalvik-jit-code-cache (deleted)

animation in sxr-javascript is broken

the animation in sxr-javascript is broken. it seems the model does not conform to how we expect to do animation now-a-days. either the animation needs to be fixed or the model fixed and we document what is needed for proper animation.

Rendertargets are broken in monoscopic

This affects:

sxr-blurfilter: createProgram glCheckFramebufferStatus not complete, status 36055
sxr-shadows, sxr-simplephysics: render only the small rendertarget and not the final scene.
sxr-rendertotexture: renders nothing

sxr-widgetlib-viewer demo cannot start

SplashScreen stays forever after launching sxr-widgetlib-viewer demo. From brief investigation: this issue is introduced by changes "Improve out of memory behavior (#61)"

captureScreenCenter is not working in Monoscopic mode

Hi, I've been trying to capture the center screen using SXRContext.captureScreenCenter() but it is not working properly (see backtrace below) in Monoscopic backend. It works fine if I use oculus backend.

I used sxr-arcore (https://github.com/sxrsdk/sxrsdk-demos/tree/master/sxr-arcore/app) as test application.

Backtrace:

> 2018-11-13 15:13:33.771 11084-11217/com.samsungxr.arcore.simplesample.monoscopic A/libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 11217 (GLThread 1680)
> 2018-11-13 15:13:33.791 685-15502/? E/CHI_SS: SS_ERR: CHI: ExecuteCaptureRequest: 2317: ExecuteCaptureRequest: pMetaData is NULL
> 2018-11-13 15:13:33.800 11084-11312/com.samsungxr.arcore.simplesample.monoscopic E/SXRAssetLoader: ASSET: Texture: successfully loaded texture andy.png 1
> 2018-11-13 15:13:33.824 685-1700/? E/CHI_SS: SS_ERR: CHI: ExecuteCaptureRequest: 2317: ExecuteCaptureRequest: pMetaData is NULL
> 2018-11-13 15:13:33.849 12152-12152/? E/propClient: PropClient failed to load
> 2018-11-13 15:13:33.859 685-1700/? E/CHI_SS: SS_ERR: CHI: ExecuteCaptureRequest: 2317: ExecuteCaptureRequest: pMetaData is NULL
> 2018-11-13 15:13:33.894 685-1700/? E/CHI_SS: SS_ERR: CHI: ExecuteCaptureRequest: 2317: ExecuteCaptureRequest: pMetaData is NULL
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG: Build fingerprint: 'samsung/star2qltezh/star2qltechn:8.0.0/R16NW/G9650ZHU1ARBG:user/release-keys'
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG: Revision: '14'
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG: ABI: 'arm64'
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG: pid: 11084, tid: 11217, name: GLThread 1680  >>> com.samsungxr.arcore.simplesample.monoscopic <<<
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG: signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG: Cause: null pointer dereference
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG:     x0   0000000000000000  x1   0000007ba36e3428  x2   0000000000000000  x3   0000007bc053f4f6
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG:     x4   0000000000000000  x5   0000008000000000  x6   00000000000000ff  x7   ffffffffffffffff
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG:     x8   0000000000000000  x9   322f0c6f9dd96f41  x10  0000000000430000  x11  0000000000000038
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG:     x12  0000000000000000  x13  ff00000000000000  x14  0000007bc5a49000  x15  ffffffffffffffff
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG:     x16  0000007ba47eeb90  x17  0000007ba428c8a4  x18  0000007ba36e2ccc  x19  0000007ba4ba1a00
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG:     x20  0000007bc3131c38  x21  0000007ba4ba1a00  x22  0000007ba36e385c  x23  0000007ba5361b55
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG:     x24  0000000000000014  x25  0000007ba4ba1a98  x26  0000000000000000  x27  0000000000000000
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG:     x28  0000007ba36e3590  x29  0000007ba36e3550  x30  0000007ba428cc38
> 2018-11-13 15:13:33.906 12154-12154/? A/DEBUG:     sp   0000007ba36e3500  pc   0000007ba428cc64  pstate 0000000060000000
> 2018-11-13 15:13:33.914 12154-12154/? A/DEBUG: backtrace:
> 2018-11-13 15:13:33.914 12154-12154/? A/DEBUG:     #00 pc 00000000001c5c64  /data/app/com.samsungxr.arcore.simplesample.monoscopic-poiqtZ1rNtineQSGmItHFg==/lib/arm64/libsxrsdk.so (Java_com_samsungxr_SXRViewManager_readRenderResultNative+112)
> 2018-11-13 15:13:33.914 12154-12154/? A/DEBUG:     #01 pc 0000000000510f00  /system/lib64/libart.so (art_quick_generic_jni_trampoline+144)
> 2018-11-13 15:13:33.914 12154-12154/? A/DEBUG:     #02 pc 0000000000507e38  /system/lib64/libart.so (art_quick_invoke_static_stub+600)
> 2018-11-13 15:13:33.914 12154-12154/? A/DEBUG:     #03 pc 00000000000d8530  /system/lib64/libart.so (_ZN3art9ArtMethod6InvokeEPNS_6ThreadEPjjPNS_6JValueEPKc+260)
> 2018-11-13 15:13:33.914 12154-12154/? A/DEBUG:     #04 pc 00000000002824a4  /system/lib64/libart.so (_ZN3art11interpreter34ArtInterpreterToCompiledCodeBridgeEPNS_6ThreadEPNS_9ArtMethodEPKNS_7DexFile8CodeItemEPNS_11ShadowFrameEPNS_6JValueE+352)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #05 pc 000000000027cb6c  /system/lib64/libart.so (_ZN3art11interpreter6DoCallILb0ELb0EEEbPNS_9ArtMethodEPNS_6ThreadERNS_11ShadowFrameEPKNS_11InstructionEtPNS_6JValueE+672)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #06 pc 00000000004f09c0  /system/lib64/libart.so (MterpInvokeStatic+468)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #07 pc 00000000004f9714  /system/lib64/libart.so (ExecuteMterpImpl+14612)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #08 pc 000000000025d8e8  /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadEPKNS_7DexFile8CodeItemERNS_11ShadowFrameENS_6JValueEb+444)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #09 pc 0000000000263fe8  /system/lib64/libart.so (_ZN3art11interpreter33ArtInterpreterToInterpreterBridgeEPNS_6ThreadEPKNS_7DexFile8CodeItemEPNS_11ShadowFrameEPNS_6JValueE+212)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #10 pc 000000000027cb4c  /system/lib64/libart.so (_ZN3art11interpreter6DoCallILb0ELb0EEEbPNS_9ArtMethodEPNS_6ThreadERNS_11ShadowFrameEPKNS_11InstructionEtPNS_6JValueE+640)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #11 pc 00000000004ef39c  /system/lib64/libart.so (MterpInvokeVirtual+612)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #12 pc 00000000004f9594  /system/lib64/libart.so (ExecuteMterpImpl+14228)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #13 pc 000000000025d8e8  /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadEPKNS_7DexFile8CodeItemERNS_11ShadowFrameENS_6JValueEb+444)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #14 pc 00000000004e331c  /system/lib64/libart.so (artQuickToInterpreterBridge+1468)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #15 pc 000000000051101c  /system/lib64/libart.so (art_quick_to_interpreter_bridge+92)
> 2018-11-13 15:13:33.915 12154-12154/? A/DEBUG:     #16 pc 000000000000ef00  /dev/ashmem/dalvik-jit-code-cache_11084_11084 (deleted)

Unity libframeregulator error

I've just setup a test project with nothing but the SXR minimum setup, when I build and run for Android (26) the app crashes and the only log that I'm able to get is the one below:

2019-10-03 11:16:22.426 21866-21866/? A/DEBUG: Build fingerprint: 'samsung/star2ltexx/star2lte:8.0.0/R16NW/G965FXXU2ARB3_DK2:userdebug/test-keys'
2019-10-03 11:16:22.426 21866-21866/? A/DEBUG: Revision: '19'
2019-10-03 11:16:22.426 21866-21866/? A/DEBUG: ABI: 'arm'
2019-10-03 11:16:22.426 21866-21866/? A/DEBUG: pid: 21839, tid: 21839, name: layManagerUsage  >>> com.DefaultCompany.DisplayManagerUsage <<<
2019-10-03 11:16:22.426 21866-21866/? A/DEBUG: signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
2019-10-03 11:16:22.429 21866-21866/? A/DEBUG: Abort message: '(null):0: (null): assertion "FrameRegulator version mismatch" failed'
2019-10-03 11:16:22.429 21866-21866/? A/DEBUG:     r0 00000000  r1 0000554f  r2 00000006  r3 00000008
2019-10-03 11:16:22.429 21866-21866/? A/DEBUG:     r4 0000554f  r5 0000554f  r6 ffb4c6e0  r7 0000010c
2019-10-03 11:16:22.429 21866-21866/? A/DEBUG:     r8 ffb4c7d0  r9 e41fdc88  sl f1432460  fp ffb4c7d4
2019-10-03 11:16:22.429 21866-21866/? A/DEBUG:     ip 00000000  sp ffb4c6d0  lr f24b3497  pc f24e4778  cpsr 200e0010
2019-10-03 11:16:22.429 19421-19421/? E/adbd: recv: OPEN 000031d5 00000000 000b:6A 64 77 70 3A 31 39 39 31 30 00
2019-10-03 11:16:22.429 19421-19421/? E/adbd: service_to_fd: jdwp:19910
2019-10-03 11:16:22.432 21866-21866/? A/DEBUG: backtrace:
2019-10-03 11:16:22.432 21866-21866/? A/DEBUG:     #00 pc 0004b778  /system/lib/libc.so (tgkill+12)
2019-10-03 11:16:22.432 21866-21866/? A/DEBUG:     #01 pc 0001a493  /system/lib/libc.so (abort+54)
2019-10-03 11:16:22.432 21866-21866/? A/DEBUG:     #02 pc 0001edb5  /system/lib/libc.so (__libc_fatal+24)
2019-10-03 11:16:22.432 21866-21866/? A/DEBUG:     #03 pc 0001a95d  /system/lib/libc.so (__assert2+16)
2019-10-03 11:16:22.432 21866-21866/? A/DEBUG:     #04 pc 00026d6b  /data/app/com.samsungxr.frameregulatorpkg-HeecaY3JQrZRxSYheYJlZg==/lib/arm/libframeregulator.so (FrameRegulatorImpl_versionCheck+50)
2019-10-03 11:16:22.432 21866-21866/? A/DEBUG:     #05 pc 00008051  /data/app/com.DefaultCompany.DisplayManagerUsage-B22ppOc6DnWSrL_DiU0nBA==/lib/arm/libsxr.so (_Z19FrameRegulator_loadP7_JNIEnvP8_jobject+148)
2019-10-03 11:16:22.432 21866-21866/? A/DEBUG:     #06 pc 00007361  /data/app/com.DefaultCompany.DisplayManagerUsage-B22ppOc6DnWSrL_DiU0nBA==/lib/arm/libgvrf-pure.so (_ZN3sxr10PurePluginC2EP7_JNIEnvP8_jobjectS4_+108)
2019-10-03 11:16:22.432 21866-21866/? A/DEBUG:     #07 pc 0000a1e7  /data/app/com.DefaultCompany.DisplayManagerUsage-B22ppOc6DnWSrL_DiU0nBA==/lib/arm/libgvrf-pure.so (Java_com_samsungxr_NativePurePlugin_ctor+30)
2019-10-03 11:16:22.432 21866-21866/? A/DEBUG:     #08 pc 0001347b  /data/app/com.DefaultCompany.DisplayManagerUsage-B22ppOc6DnWSrL_DiU0nBA==/oat/arm/base.odex (offset 0xd000)

Any clue what's going on?

sxr_adapter project cause crash

I try sxr-arcore demo, finally find out that the app crash on sxr_adapter. when try to find out why it's crash, I didn't see sxr_adapter project in sxrsdk. is sxr_adapter closed source? can you help fix this? or release the code if it's open.

 #00 pc 00010ae6  /data/app/com.samsungxr.arcore.simplesample.ar-WDbWmRWLnXAMBJyQ7JeGcA==/lib/arm/libsxr-fr.so

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.