View Issue Details

IDProjectCategoryView StatusLast Update
0001397NoesisGUIUnitypublic2019-01-22 14:09
Reporternokola Assigned Tojsantos  
PrioritynormalSeveritycrash 
Status assignedResolutionopen 
Product Version2.1.0f1 
Summary0001397: Noesis crashes when changing control.Width during screen rotation
Description

Unfortunately doesn't reproduce with all controls, just this one. But reproduces always with this one on Android. Does not reproduce in Unity Editor.

I have this code that sets a UserControl's width/height when the user rotates the screen. The width/height are valid values.
Debug.Log($"CROP: width == {width}, height == {height}"); // CROP: width == 195, height == 126.8516
_adorner.Width = width;
_adorner.Height = height;

Results in this crash:

(Filename: /Users/builduser/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)

2019-01-21 21:06:08.434 6773-6976/com.android.systemui W/Adreno-EGL: <qeglDrvAPI_eglGetConfigAttrib:607>: EGL_BAD_ATTRIBUTE
2019-01-21 21:06:08.435 6773-6976/com.android.systemui D/vndksupport: Loading /vendor/lib/hw/gralloc.msm8974.so from current namespace instead of sphal namespace.
2019-01-21 21:06:08.461 6773-6773/com.android.systemui D/StatusBar: disable<e i a s b h r c s > disable2<q i n >
2019-01-21 21:06:08.544 21207-21223/com.datcompany.fantasiapainter I/Unity: CROP: width == 195, height == 126.8516

(Filename: /Users/builduser/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)

2019-01-21 21:06:08.609 20129-20353/com.microsoft.office.outlook D/ClClient: Not sending keepalive. Current connection state=STOPPED
2019-01-21 21:06:08.647 6773-6976/com.android.systemui W/Adreno-EGL: <qeglDrvAPI_eglGetConfigAttrib:607>: EGL_BAD_ATTRIBUTE
2019-01-21 21:06:08.643 280-280/? I/healthd: type=1400 audit(0.0:16711): avc: denied { read } for name="present" dev="sysfs" ino=18498 scontext=u:r:healthd:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
2019-01-21 21:06:08.643 280-280/? I/healthd: type=1400 audit(0.0:16712): avc: denied { open } for name="present" dev="sysfs" ino=18498 scontext=u:r:healthd:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
2019-01-21 21:06:08.662 20129-20129/com.microsoft.office.outlook D/HxBatteryStatusReceiver: onReceiveandroid.intent.action.BATTERY_CHANGED
2019-01-21 21:06:08.666 6773-6773/com.android.systemui D/StatusBar: disable<e i a s b h r c s > disable2<q i n >
2019-01-21 21:06:08.686 6430-6497/system_process I/WindowManager: Screen frozen for +604ms due to Window{23c87b0 u0 StatusBar}
2019-01-21 21:06:08.690 292-362/? D/SurfaceFlinger: duplicate layer name: changing BlackSurface to BlackSurface#1
2019-01-21 21:06:08.691 292-623/? D/SurfaceFlinger: duplicate layer name: changing BlackSurface to BlackSurface#2
2019-01-21 21:06:08.691 292-622/? D/SurfaceFlinger: duplicate layer name: changing BlackSurface to BlackSurface#3

--------- beginning of crash

2019-01-21 21:06:08.692 21592-21234/? A/google-breakpad: Microdump skipped (uninteresting)
2019-01-21 21:06:08.696 285-285/? E/WifiHAL: wifi_get_link_stats: requestResponse Error:-5
2019-01-21 21:06:08.696 6430-6570/system_process E/WifiVendorHal: getWifiLinkLayerStats(l.937) failed {.code = ERROR_INVALID_ARGS, .description = }
2019-01-21 21:06:08.698 292-362/? W/SurfaceFlinger: Attempting to destroy on removed layer: 4c49c0d AssistPreviewPanel#0
2019-01-21 21:06:08.712 21207-21234/com.datcompany.fantasiapainter W/google-breakpad: ### ### ### ### ### ### ### ### ### ### ### ### ###
2019-01-21 21:06:08.712 21207-21234/com.datcompany.fantasiapainter W/google-breakpad: Chrome build fingerprint:
2019-01-21 21:06:08.713 21207-21234/com.datcompany.fantasiapainter W/google-breakpad: 1.23
2019-01-21 21:06:08.713 21207-21234/com.datcompany.fantasiapainter W/google-breakpad: 23
2019-01-21 21:06:08.713 21207-21234/com.datcompany.fantasiapainter W/google-breakpad: ### ### ### ### ### ### ### ### ### ### ### ### ###
2019-01-21 21:06:08.875 21207-21234/com.datcompany.fantasiapainter E/CRASH: signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0001873b
2019-01-21 21:06:08.875 21207-21234/com.datcompany.fantasiapainter E/CRASH:
2019-01-21 21:06:08.875 21207-21234/com.datcompany.fantasiapainter E/CRASH: Build fingerprint: 'oneplus/bacon/A0001:6.0.1/MHC19Q/ZNH2KAS1KN:user/release-keys'
2019-01-21 21:06:08.875 21207-21234/com.datcompany.fantasiapainter E/CRASH: Revision: '0'
2019-01-21 21:06:08.876 21207-21234/com.datcompany.fantasiapainter E/CRASH: pid: 21207, tid: 21234, name: UnityGfxDeviceW >>> com.datcompany.fantasiapainter <<<
2019-01-21 21:06:08.876 21207-21234/com.datcompany.fantasiapainter E/CRASH: r0 7d75d554 r1 7d4e6179 r2 7d4dff4d r3 00000001
2019-01-21 21:06:08.876 21207-21234/com.datcompany.fantasiapainter E/CRASH: r4 0001873b r5 634fa520 r6 00000004 r7 802ea120
2019-01-21 21:06:08.876 21207-21234/com.datcompany.fantasiapainter E/CRASH: r8 ffffffff r9 00000003 sl 87afb580 fp 00018a26
2019-01-21 21:06:08.876 21207-21234/com.datcompany.fantasiapainter E/CRASH: ip 634fa420 sp 87afb500 lr 7d4e05bf pc 7d4e6182 cpsr 0000000b
2019-01-21 21:06:08.876 21207-21234/com.datcompany.fantasiapainter E/CRASH: backtrace:
2019-01-21 21:06:08.920 21207-21234/com.datcompany.fantasiapainter E/CRASH: #00 pc 00157182 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.920 21207-21234/com.datcompany.fantasiapainter E/CRASH: #01 pc 001515bd /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.920 21207-21234/com.datcompany.fantasiapainter E/CRASH: #02 pc 00157245 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.920 21207-21234/com.datcompany.fantasiapainter E/CRASH: #03 pc 00151c75 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.920 21207-21234/com.datcompany.fantasiapainter E/CRASH: #04 pc 00153cb1 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.920 21207-21234/com.datcompany.fantasiapainter E/CRASH: #05 pc 0015842d /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.920 21207-21234/com.datcompany.fantasiapainter E/CRASH: #06 pc 00158537 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.920 21207-21234/com.datcompany.fantasiapainter E/CRASH: #07 pc 002310cf /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.920 21207-21234/com.datcompany.fantasiapainter E/CRASH: #08 pc 00230c8f /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.920 21207-21234/com.datcompany.fantasiapainter E/CRASH: #09 pc 0022e52f /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #10 pc 0022e597 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #11 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #12 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #13 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #14 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #15 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #16 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #17 pc 0022e597 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #18 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #19 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #20 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #21 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #22 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #23 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #24 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #25 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #26 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #27 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #28 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #29 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #30 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: #31 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so
2019-01-21 21:06:08.921 21207-21234/com.datcompany.fantasiapainter E/CRASH: memory near r0:
2019-01-21 21:06:08.922 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d534 7d498921 7d498929 7d498931 7d47a3b1 !.I}).I}1.I}..G}
2019-01-21 21:06:08.922 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d544 7d4e598d 7d4e5993 00000000 00000000 .YN}.YN}........
2019-01-21 21:06:08.922 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d554 7d4e6179 7d4e6199 7d4e62dd 7d47881b yaN}.aN}.bN}..G}
2019-01-21 21:06:08.922 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d564 7d47887d 7d478889 7d478697 7d4786a9 }.G}..G}..G}..G}
2019-01-21 21:06:08.922 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d574 7d4786c3 00000000 00000000 7d4e6421 ..G}........!dN}
2019-01-21 21:06:08.923 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d584 7d4e6479 7d4e6a55 7d47881b 7d47887d ydN}UjN}..G}}.G}
2019-01-21 21:06:08.923 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d594 7d478889 7d478697 7d4786a9 7d4786c3 ..G}..G}..G}..G}
2019-01-21 21:06:08.923 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d5a4 7d4e64d9 7d4e66bf 7d4785b9 7d49750f .dN}.fN}..G}.uI}
2019-01-21 21:06:08.923 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d5b4 7d497515 7d47d8e9 fffffff8 00000000 .uI}..G}........
2019-01-21 21:06:08.923 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d5c4 7d4e644d 7d4e64a9 7d4e6a55 7d49891d MdN}.dN}UjN}..I}
2019-01-21 21:06:08.923 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d5d4 7d498921 7d498929 7d498931 7d4e66b9 !.I}).I}1.I}.fN}
2019-01-21 21:06:08.924 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d5e4 7d4e66d7 00000000 00000000 7d4e71f5 .fN}.........qN}
2019-01-21 21:06:08.924 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d5f4 7d4e73af 7d4ecd05 7d47881b 7d47887d .sN}..N}..G}}.G}
2019-01-21 21:06:08.924 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d604 7d478889 7d478697 7d4786a9 7d4786c3 ..G}..G}..G}..G}
2019-01-21 21:06:08.925 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d614 7d4e73cd 7d4e7541 7d4e76f1 7d4e7765 .sN}AuN}.vN}ewN}
2019-01-21 21:06:08.925 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d75d624 7d4e7781 7d4e79a9 7d4e7ac9 7d4e7bb1 .wN}.yN}.zN}.{N}
2019-01-21 21:06:08.925 21207-21234/com.datcompany.fantasiapainter E/CRASH: memory near r1:
2019-01-21 21:06:08.925 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6158 44786025 68009903 1a406800 b004bf04 %xD...h.h@..... 2019-01-21 21:06:08.925 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6168 f790bdb0 bf00eee6 002c3d10 002c3cca .........=,..<,. 2019-01-21 21:06:08.925 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6178 4604b510 44784805 60203008 f7f968a0 ...F.HxD.0.h..
2019-01-21 21:06:08.926 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6188 4620ff68 4010e8bd baccf792 002773ca h. [email protected]'.
2019-01-21 21:06:08.926 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6198 4604b510 44784806 60203008 f7f968a0 ...F.HxD.0 .h.. 2019-01-21 21:06:08.926 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61a8 4620ff58 fabef792 4010e8bd bb1af792 X. F.......@.... 2019-01-21 21:06:08.926 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61b8 002773aa 4ff0e92d 4682b093 460c4838 .s'.-..O...F8H.F 2019-01-21 21:06:08.926 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61c8 4478991c 68004615 90126800 60486808 ..xD.F.h.h...hH
2019-01-21 21:06:08.927 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61d8 130ae9cd 6818a906 93049002 90016858 .......h....Xh..
2019-01-21 21:06:08.927 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61e8 0008f8da fa98f7fa 0008f8da 91034629 ............)F..
2019-01-21 21:06:08.927 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61f8 f04fb3e5 25000b00 94052700 faa1f7fa ..O....%.'......
2019-01-21 21:06:08.927 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6208 901bf834 4626ac0c 454d9c04 2004d820 4.....&F..ME ..
2019-01-21 21:06:08.927 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6218 08c5ea40 46316820 4440462a 0a01ed10 @... h1FF@D....
2019-01-21 21:06:08.927 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6228 0ac0eeb7 0b0ced8d 0a00ed90 0ac0eeb7 ................
2019-01-21 21:06:08.928 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6238 0b0eed8d 7710e9cd 0008f8da f8d0f7fa .......w........
2019-01-21 21:06:08.928 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6248 f1089805 35010808 901bf830 d9e1454d .......50...ME..
2019-01-21 21:06:08.928 21207-21234/com.datcompany.fantasiapainter E/CRASH: memory near r2:
2019-01-21 21:06:08.928 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dff2c f7972101 bf00e978 002ca070 00247980 .!..x...p.,..y$.
2019-01-21 21:06:08.928 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dff3c 002c9fde 002c9f10 47704770 47704770 ..,...,.pGpGpGpG
2019-01-21 21:06:08.928 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dff4c 47704770 43f0e92d 2040b081 f8fcf7b4 pGpG-..C..@ ....
2019-01-21 21:06:08.929 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dff5c d0572800 6064f44f ff66f005 20004601 .(W.O.d..f..F. 2019-01-21 21:06:08.929 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dff6c d04c2900 f2484a29 4b297622 0601f2c0 .)L.)JH."v)K.... 2019-01-21 21:06:08.929 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dff7c 447a4d2b f8df447b 447dc09c e098f8df +MzD{D....}D.... 2019-01-21 21:06:08.929 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dff8c 8098f8df f8df44fc 44fe909c 44f84c29 .....D.....D)L.D 2019-01-21 21:06:08.929 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dff9c 44f94f29 447c6008 0016e9c1 e9c1447f )O.D.|D.....D..
2019-01-21 21:06:08.930 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dffac e9c10008 e9c10006 660e0004 f8814e23 ...........f#N..
2019-01-21 21:06:08.930 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dffbc f8810078 447e0079 5080f8c1 f8c14d1a x...y.~D...P.M..
2019-01-21 21:06:08.930 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dffcc 4a1a2084 f8c1447d 4b193088 f8c1447a . .J}D...0.KzD..
2019-01-21 21:06:08.930 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dffdc f8c1c08c 447be00c 8074f8c1 9090f8c1 ......{D..t.....
2019-01-21 21:06:08.930 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dffec 5d20f8c1 2d24f8c1 3d28f8c1 4d2cf8c1 .. ]..$-..(=..,M
2019-01-21 21:06:08.931 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4dfffc 7d30f8c1 6d34f8c1 0d38f8c1 b0014608 ..0}..4m..8..F..
2019-01-21 21:06:08.931 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e000c 83f0e8bd b0012000 83f0e8bd 000000cd ..... ..........
2019-01-21 21:06:08.931 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e001c 000000cd 000000bf 000000bb 000000b9 ................
2019-01-21 21:06:08.931 21207-21234/com.datcompany.fantasiapainter E/CRASH: memory near r4:
2019-01-21 21:06:08.931 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018718 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.931 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018728 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.932 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018738 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.932 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018748 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.932 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018758 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.932 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018768 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.933 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018778 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.933 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018788 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.933 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018798 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.933 21207-21234/com.datcompany.fantasiapainter E/CRASH: 000187a8 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.933 21207-21234/com.datcompany.fantasiapainter E/CRASH: 000187b8 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.934 21207-21234/com.datcompany.fantasiapainter E/CRASH: 000187c8 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.934 21207-21234/com.datcompany.fantasiapainter E/CRASH: 000187d8 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.934 21207-21234/com.datcompany.fantasiapainter E/CRASH: 000187e8 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.934 21207-21234/com.datcompany.fantasiapainter E/CRASH: 000187f8 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.935 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018808 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.935 21207-21234/com.datcompany.fantasiapainter E/CRASH: memory near r5:
2019-01-21 21:06:08.935 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa500 634fa480 634fa520 634fa400 634fa480 ..Oc .Oc..Oc..Oc
2019-01-21 21:06:08.935 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa510 634fa380 80d4e970 00000000 ffffffff ..Ocp...........
2019-01-21 21:06:08.935 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa520 803ea4f8 634fa500 634fa480 634fa400 ..>...Oc..Oc..Oc
2019-01-21 21:06:08.935 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa530 634fa540 80d4ea60 00000000 00000001 @.Oc........... 2019-01-21 21:06:08.936 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa540 634fa380 634fa4c0 634fa520 00000003 ..Oc..Oc .Oc.... 2019-01-21 21:06:08.936 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa550 00000000 00000000 00000000 40840000 ...............@ 2019-01-21 21:06:08.936 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa560 00000000 00000000 634fb220 634fa620 ........ .Oc .Oc 2019-01-21 21:06:08.936 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa570 634fa5c0 8bba2658 00000000 00000001 ..OcX&.......... 2019-01-21 21:06:08.937 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa580 8a1c3318 71911000 71987000 00000001 .3.....q.p.q.... 2019-01-21 21:06:08.937 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa590 00000000 7379732f 2f6d6574 6d617266 ..../system/fram 2019-01-21 21:06:08.937 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa5a0 726f7765 72612f6b 6f622f6d 632d746f ework/arm/boot-c 2019-01-21 21:06:08.937 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa5b0 2d65726f 6162696c 6f2e7472 00007461 ore-libart.oat.. 2019-01-21 21:06:08.937 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa5c0 634fa580 71987000 71a92000 00000101 ..Oc.p.q. .q.... 2019-01-21 21:06:08.938 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa5d0 00000000 7379732f 2f6d6574 6d617266 ..../system/fram 2019-01-21 21:06:08.938 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa5e0 726f7765 72612f6b 6f622f6d 632d746f ework/arm/boot-c 2019-01-21 21:06:08.938 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa5f0 2d65726f 6162696c 6f2e7472 00007461 ore-libart.oat.. 2019-01-21 21:06:08.938 21207-21234/com.datcompany.fantasiapainter E/CRASH: memory near r7: 2019-01-21 21:06:08.938 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea100 00000000 00000000 00000000 40840000 ...............@ 2019-01-21 21:06:08.938 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea110 00000000 00000000 00000003 00000000 ................ 2019-01-21 21:06:08.939 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea120 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.939 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea130 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.939 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea140 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.939 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea150 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.939 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea160 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.940 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea170 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.940 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea180 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.941 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea190 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.941 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea1a0 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.942 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea1b0 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.942 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea1c0 00000000 00000000 9854bb40 00000000 [email protected]..... 2019-01-21 21:06:08.942 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea1d0 00000000 00000000 802ea1e8 802ea260 ...............
2019-01-21 21:06:08.942 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea1e0 802ea368 00000000 01000000 80000062 h...........b...
2019-01-21 21:06:08.943 21207-21234/com.datcompany.fantasiapainter E/CRASH: 802ea1f0 802ea1c0 84ef5a70 00000000 00000000 ....pZ..........
2019-01-21 21:06:08.943 21207-21234/com.datcompany.fantasiapainter E/CRASH: memory near sl:
2019-01-21 21:06:08.943 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb560 84ef5abc 87afb64c 43011300 01d9bd4b .Z..L......CK...
2019-01-21 21:06:08.943 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb570 80e7cdf0 7d4dff69 84ef5acc 84ef5abc ....i.M}.Z...Z..
2019-01-21 21:06:08.943 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb580 00000000 7ff80000 00000000 7ff80000 ................
2019-01-21 21:06:08.943 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb590 00000000 00000000 01d9bd4b 80e7cdf0 ........K.......
2019-01-21 21:06:08.943 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb5a0 87afb624 84ef5aa0 87afb600 00000000 $....Z..........
2019-01-21 21:06:08.944 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb5b0 87afb600 87afb624 87afb6b8 7d4e0c79 ....$.......y.N}
2019-01-21 21:06:08.944 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb5c0 84ef5acc 87afb6b8 84ef5aa0 87afb73c .Z.......Z..<...
2019-01-21 21:06:08.944 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb5d0 00000000 7d4e2cb3 87afb640 01d9bd4b .....,N}@...K...
2019-01-21 21:06:08.944 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb5e0 87afb6b8 3d23d70b 87afb624 80e3f198 ......#=$.......
2019-01-21 21:06:08.944 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb5f0 7d4ef5ab 634f6768 87afb73c 7d4e7431 ..N}hgOc<...1tN}
2019-01-21 21:06:08.944 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb600 83865500 00000080 3f800000 00000000 .U.........?....
2019-01-21 21:06:08.945 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb610 00000000 3f800000 00000000 00000000 .......?........
2019-01-21 21:06:08.945 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb620 00000000 7d75d4a0 3d23d70b 00000000 ......u}..#=....
2019-01-21 21:06:08.945 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb630 00000000 84ef5aa0 87afb64c 87afb650 .....Z..L...P...
2019-01-21 21:06:08.945 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb640 87afb68c 7d47b6bf 87afb64c 00070003 ......G}L.......
2019-01-21 21:06:08.945 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb650 83865500 7d4ef4cf 80fd90c0 00000080 .U....N}........
2019-01-21 21:06:08.945 21207-21234/com.datcompany.fantasiapainter E/CRASH: memory near fp:
2019-01-21 21:06:08.945 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018a04 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.946 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018a14 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.946 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018a24 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.946 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018a34 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.946 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018a44 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.946 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018a54 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.947 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018a64 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.947 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018a74 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.947 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018a84 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.947 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018a94 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.948 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018aa4 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.948 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018ab4 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.948 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018ac4 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.948 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018ad4 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.949 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018ae4 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.949 21207-21234/com.datcompany.fantasiapainter E/CRASH: 00018af4 ffffffff ffffffff ffffffff ffffffff ................
2019-01-21 21:06:08.949 21207-21234/com.datcompany.fantasiapainter E/CRASH: memory near ip:
2019-01-21 21:06:08.949 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa400 803ea4d8 634fa420 634fa500 634fa3e0 ..>. .Oc..Oc..Oc
2019-01-21 21:06:08.949 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa410 634fa380 80d4ea60 00000000 00000001 ..Oc........... 2019-01-21 21:06:08.950 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa420 634fa3e0 634fa400 634fa3e0 634fa500 ..Oc..Oc..Oc..Oc 2019-01-21 21:06:08.950 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa430 634fa440 80d4e970 00000000 ffffffff @.Ocp........... 2019-01-21 21:06:08.950 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa440 634fa4c0 803ea480 634fa3e0 00000001 ..Oc..>...Oc.... 2019-01-21 21:06:08.950 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa450 80000000 408020e3 00000000 00000000 ..... .@........ 2019-01-21 21:06:08.951 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa460 00000000 00000000 00000000 00000000 ................ 2019-01-21 21:06:08.951 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa470 00000000 40268000 ffffffe8 00000000 ......&@........ 2019-01-21 21:06:08.951 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa480 634fa3c0 634fa4a0 634fa520 634fa3c0 ..Oc..Oc .Oc..Oc 2019-01-21 21:06:08.951 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa490 634fa540 80d4e970 00000000 ffffffff @.Ocp........... 2019-01-21 21:06:08.952 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa4a0 634fa520 634fa480 634fa3c0 634fa520 .Oc..Oc..Oc .Oc 2019-01-21 21:06:08.952 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa4b0 634fa4c0 80d4ea60 00000000 00000001 ..Oc...........
2019-01-21 21:06:08.952 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa4c0 634fa540 634fa440 634fa4a0 00000002 @[email protected]....
2019-01-21 21:06:08.952 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa4d0 80000000 408020e3 00000000 40840000 ..... .@.......@
2019-01-21 21:06:08.953 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa4e0 00000000 00000000 00000000 40020000 ...............@
2019-01-21 21:06:08.953 21207-21234/com.datcompany.fantasiapainter E/CRASH: 634fa4f0 00000000 40268000 ffffffe7 ffffffff ......&@........
2019-01-21 21:06:08.953 21207-21234/com.datcompany.fantasiapainter E/CRASH: memory near sp:
2019-01-21 21:06:08.953 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb4e0 802ea000 634fa4a0 634fa4a0 802ea100 ......Oc..Oc....
2019-01-21 21:06:08.953 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb4f0 ffffffff 7d4dcc7b 802ea000 634fa4a0 ....{.M}......Oc
2019-01-21 21:06:08.953 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb500 802ea000 7d4e05bf 87afb624 00000004 ......N}$.......
2019-01-21 21:06:08.953 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb510 35a00000 00000000 00000000 00000000 ...5............
2019-01-21 21:06:08.953 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb520 34000000 00000000 00000008 84ef5abc ...4.........Z..
2019-01-21 21:06:08.954 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb530 00000004 87afb580 00000000 00000024 ............$...
2019-01-21 21:06:08.954 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb540 00000007 80e7cdf0 00000001 7d4e6249 ............IbN}
2019-01-21 21:06:08.954 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb550 87afb600 83865640 83865600 00000002 ....@V...V......
2019-01-21 21:06:08.954 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb560 84ef5abc 87afb64c 43011300 01d9bd4b .Z..L......CK...
2019-01-21 21:06:08.954 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb570 80e7cdf0 7d4dff69 84ef5acc 84ef5abc ....i.M}.Z...Z..
2019-01-21 21:06:08.954 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb580 00000000 7ff80000 00000000 7ff80000 ................
2019-01-21 21:06:08.954 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb590 00000000 00000000 01d9bd4b 80e7cdf0 ........K.......
2019-01-21 21:06:08.955 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb5a0 87afb624 84ef5aa0 87afb600 00000000 $....Z..........
2019-01-21 21:06:08.955 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb5b0 87afb600 87afb624 87afb6b8 7d4e0c79 ....$.......y.N}
2019-01-21 21:06:08.955 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb5c0 84ef5acc 87afb6b8 84ef5aa0 87afb73c .Z.......Z..<...
2019-01-21 21:06:08.955 21207-21234/com.datcompany.fantasiapainter E/CRASH: 87afb5d0 00000000 7d4e2cb3 87afb640 01d9bd4b .....,N}@...K...
2019-01-21 21:06:08.955 21207-21234/com.datcompany.fantasiapainter E/CRASH: code around pc:
2019-01-21 21:06:08.955 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6160 1a406800 b004bf04 f790bdb0 bf00eee6 .h@.............
2019-01-21 21:06:08.956 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6170 002c3d10 002c3cca 4604b510 44784805 .=,..<,....F.HxD
2019-01-21 21:06:08.956 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6180 60203008 f7f968a0 4620ff68 4010e8bd .0 .h..h. F...@ 2019-01-21 21:06:08.957 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6190 baccf792 002773ca 4604b510 44784806 .....s'....F.HxD 2019-01-21 21:06:08.957 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61a0 60203008 f7f968a0 4620ff58 fabef792 .0.h..X. F....
2019-01-21 21:06:08.957 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61b0 4010e8bd bb1af792 002773aa 4ff0e92d [email protected]'.-..O
2019-01-21 21:06:08.957 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61c0 4682b093 460c4838 4478991c 68004615 ...F8H.F..xD.F.h
2019-01-21 21:06:08.957 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61d0 90126800 60486808 130ae9cd 6818a906 .h...hH`.......h
2019-01-21 21:06:08.957 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61e0 93049002 90016858 0008f8da fa98f7fa ....Xh..........
2019-01-21 21:06:08.958 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e61f0 0008f8da 91034629 f04fb3e5 25000b00 ....)F....O....%
2019-01-21 21:06:08.958 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6200 94052700 faa1f7fa 901bf834 4626ac0c .'......4.....&F
2019-01-21 21:06:08.958 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6210 454d9c04 2004d820 08c5ea40 46316820 ..ME .. @... h1F
2019-01-21 21:06:08.958 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6220 4440462a 0a01ed10 0ac0eeb7 0b0ced8d
F@D............
2019-01-21 21:06:08.958 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6230 0a00ed90 0ac0eeb7 0b0eed8d 7710e9cd ...............w
2019-01-21 21:06:08.959 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6240 0008f8da f8d0f7fa f1089805 35010808 ...............5
2019-01-21 21:06:08.959 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e6250 901bf830 d9e1454d 0008f8da fa8af7fa 0...ME..........
2019-01-21 21:06:08.959 21207-21234/com.datcompany.fantasiapainter E/CRASH: code around lr:
2019-01-21 21:06:08.959 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e059c d0064282 1d38f8d4 2026f648 0001f2c0 .B....8.H.& ....
2019-01-21 21:06:08.959 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e05ac 68e1e098 2026f648 0001f2c0 68e1e09b ...hH.& .......h
2019-01-21 21:06:08.959 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e05bc 68a04788 d15a2800 0098f8d4 dc0f2863 .G.h.(Z.....c(..
2019-01-21 21:06:08.960 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e05cc 1040eb04 60b8f8c0 ab28ed80 9b2aed80 ..@......(...*. 2019-01-21 21:06:08.960 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e05dc 8b2ced80 0098f8d4 f8c43001 e0670098 ..,......0....g. 2019-01-21 21:06:08.960 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e05ec f7fc9601 60a0fc46 d06a2800 0098f8d4 ....F...(j.....
2019-01-21 21:06:08.960 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e05fc db362801 1040eb04 f1006865 f10409a0 .([email protected]......
2019-01-21 21:06:08.960 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e060c f04f07a0 f04f0a01 69be38ff 4628b135 ..O...O..8.i5.(F
2019-01-21 21:06:08.961 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e061c fb29f7fc d0542800 e00b68ed f7fc68a0 ..)..(T..h...h..
2019-01-21 21:06:08.961 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e062c 4605f951 d04c2d00 46286869 f9d5f7fc Q..F.-L.ih(F....
2019-01-21 21:06:08.961 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e063c d0462800 60c66928 0b00ed97 0b04ed80 .(F.(i......... 2019-01-21 21:06:08.961 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e064c 0b02ed97 0b06ed80 0b04ed97 454f3720 ............ 7OE 2019-01-21 21:06:08.961 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e065c 0b08ed80 a01cf8c5 f8c06868 6065801c ........hh....e
2019-01-21 21:06:08.962 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e066c 2000d3d3 0098f8c4 0094f884 68659e01 ... ..........eh
2019-01-21 21:06:08.962 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e067c 4628b12d faf7f7fc 68edb300 68a0e009 -.(F.......h...h
2019-01-21 21:06:08.962 21207-21234/com.datcompany.fantasiapainter E/CRASH: 7d4e068c f920f7fc b1cd4605 46286869 f9a5f7fc .. ..F..ih(F....

Steps To Reproduce

See description

Attached Files
PlatformAny

Activities

nokola

nokola

2019-01-22 07:47

reporter   ~0005406

Figured out how to work around the crash. I was assigning _adorner.Width and other controls' properties (e.g. border.Thickness = new Thickness(...)) twice to the same value in two consecutive frames. Once I changed my code to assign only once, the crash stopped.

Likely crash is caused due to combination of calling UpdateLayout() and assigning values to controls' properties from C# in two consecutive frames. The code in question is handling orientation change (portrait to landscape and vice versa).

Hope that helps pinpoint the crash! Currently I'm not blocked anymore, just very cautious with assigning properties to Noesis controls.

sfernandez

sfernandez

2019-01-22 13:14

manager   ~0005408

@jsantos Could you help here, the stack points to a crash inside the tessellator: CALL_ERROR_OR_ERROR_DATA( GLU_TESS_COORD_TOO_LARGE );

stack.txt (14,307 bytes)   
********** Crash dump: **********
Build fingerprint: 'oneplus/bacon/A0001:6.0.1/MHC19Q/ZNH2KAS1KN:user/release-keys'
pid: 21207, tid: 21234, name: UnityGfxDeviceW >>> com.datcompany.fantasiapainter <<<
Stack frame E/CRASH: #00 pc 00157182 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine ~Tessellator2D at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Drawing/VGL/Src/Tessellator2d.cpp:176
Stack frame E/CRASH: #01 pc 001515bd /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine internal_gluTessVertex at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/3rdParty/LibTess/local/libtess/tess.c:446 (discriminator 2)
Stack frame E/CRASH: #02 pc 00157245 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::Tessellator2D::Tessellate(unsigned short const*, unsigned int, eastl::vector<Noesis::Vector2<float>, eastl::NsAllocator>&, eastl::vector<unsigned short, eastl::NsAllocator>&) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Drawing/VGL/Src/Tessellator2d.cpp:211
Stack frame E/CRASH: #03 pc 00151c75 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::PathFiller::DoProcessPath(Noesis::PathTessellator::Path const&, Noesis::Transform2<float> const&) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Drawing/VGL/Src/PathFiller.cpp:31 (discriminator 3)
Stack frame E/CRASH: #04 pc 00153cb1 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::PathTessellator::ProcessPath(Noesis::PathTessellator::Path const&, Noesis::Transform2<float> const&, bool) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Drawing/VGL/Src/PathTessellator.cpp:42
Stack frame E/CRASH: #05 pc 0015842d /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::VGLContext::CacheFillPath(Noesis::PathTessellator::Path const&, float, bool, Noesis::Transform2<float> const&) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Drawing/VGL/Src/VGLContext.cpp:1146
Stack frame E/CRASH: #06 pc 00158537 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine non-virtual thunk to Noesis::VGLContext::CacheFillPath(Noesis::IVGLPath*, float, bool, Noesis::Transform2<float> const&) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Drawing/VGL/Src/VGLContext.cpp:288
Stack frame E/CRASH: #07 pc 002310cf /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::DrawFill(Noesis::GeometryProxy*, Noesis::RenderNode*, Noesis::BrushProxy*, Noesis::Rect const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, float) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelperDraw.cpp:341 (discriminator 1)
Stack frame E/CRASH: #08 pc 00230c8f /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::DrawCommands(Noesis::RenderNode*, Noesis::Sizei const&, Noesis::DrawingCommandsProxy*, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelperDraw.cpp:229
Stack frame E/CRASH: #09 pc 0022e52f /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderDraw(Noesis::RenderNode*, Noesis::Sizei const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:935
Stack frame E/CRASH: #10 pc 0022e597 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #11 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #12 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #13 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #14 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #15 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #16 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #17 pc 0022e597 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #18 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #19 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #20 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #21 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #22 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #23 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #24 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #25 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #26 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #27 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #28 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #29 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #30 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
Stack frame E/CRASH: #31 pc 0022e567 /data/app/com.datcompany.fantasiapainter-qKNTFhmucC1vR_iin3txeg==/lib/arm/libNoesis.so: Routine Noesis::RenderTreeHelper::RenderChildren(Noesis::RenderNode*, Noesis::Recti const&, Noesis::Transform2<float> const&, Noesis::Matrix4<float> const&, bool, float, unsigned int) at D:/Builds/Slave/build/NoesisSDK/../_build/Projects/android_arm/Noesis/../../../../NoesisSDK/Src/Packages/Gui/Core/Src/RenderTreeHelper.cpp:952
stack.txt (14,307 bytes)   
jsantos

jsantos

2019-01-22 14:09

manager   ~0005409

Sure, I will analyze it

Issue History

Date Modified Username Field Change
2019-01-22 06:11 nokola New Issue
2019-01-22 07:47 nokola Note Added: 0005406
2019-01-22 13:12 sfernandez Assigned To => jsantos
2019-01-22 13:12 sfernandez Status new => assigned
2019-01-22 13:14 sfernandez File Added: stack.txt
2019-01-22 13:14 sfernandez Note Added: 0005408
2019-01-22 14:09 jsantos Note Added: 0005409
2025-10-10 13:29 jsantos Category Unity3D => Unity