Advertisement
Guest User

Untitled

a guest
Oct 30th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.30 KB | None | 0 0
  1. I/ActivityManager( 413): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.kitware.NativeVTK/android.app.NativeActivity bnds=[1914,663][2106,855]} from pid 676
  2. I/ActivityManager( 413): Start proc com.kitware.NativeVTK for activity com.kitware.NativeVTK/android.app.NativeActivity: pid=2924 uid=10053 gids={50053, 1028}
  3. D/dalvikvm( 2924): Late-enabling CheckJNI
  4. I/dalvikvm( 2924): Turning on JNI app bug workarounds for target SDK version 12...
  5. V/threaded_app( 2924): Creating: 0x722126e0
  6. V/threaded_app( 2924): Config: mcc=0 mnc=0 lang=en cnt=US orien=2 touch=3 dens=320 keys=1 nav=1 keysHid=3 navHid=0 sdk=18 size=4 long=1 modetype=1 modenight=1
  7. V/threaded_app( 2924): Start: 0x722126e0
  8. V/threaded_app( 2924): activityState=10
  9. V/threaded_app( 2924): Resume: 0x722126e0
  10. W/VTK ( 2924): Handling Command
  11. V/threaded_app( 2924): activityState=11
  12. W/VTK ( 2924): Handling Command
  13. V/threaded_app( 2924): InputQueueCreated: 0x722126e0 -- 0x7221f7d0
  14. V/threaded_app( 2924): APP_CMD_INPUT_CHANGED
  15. V/threaded_app( 2924): Attaching input queue to looper
  16. W/VTK ( 2924): Handling Command
  17. V/threaded_app( 2924): NativeWindowCreated: 0x722126e0 -- 0x7222def0
  18. V/threaded_app( 2924): APP_CMD_INIT_WINDOW
  19. W/VTK ( 2924): Handling Command
  20. W/VTK ( 2924): Creating Window
  21. V/threaded_app( 2924): WindowFocusChanged: 0x722126e0 -- 1
  22. D/libEGL ( 2924): loaded /vendor/lib/egl/libGLES_mali.so
  23. D/mali_winsys( 2924): new_window_surface returns 0x3000
  24. I/ActivityManager( 413): Displayed com.kitware.NativeVTK/android.app.NativeActivity: +248ms
  25. W/VTK ( 2924): Done Creating Window start
  26. W/VTK ( 2924): Done first render
  27. E/VTK ( 2924): ERROR: In /Users/lonnibesancon/Desktop/VTKNew/Rendering/OpenGL2/vtkShaderProgram.cxx, line 369
  28. E/VTK ( 2924): vtkShaderProgram (0x766f6c68): 1: #ifdef GL_ES
  29. E/VTK ( 2924): 2: #ifdef GL_FRAGMENT_PRECISION_HIGH
  30. E/VTK ( 2924): 3: precision highp float;
  31. E/VTK ( 2924): 4: #else
  32. E/VTK ( 2924): 5: precision mediump float;
  33. E/VTK ( 2924): 6: #endif
  34. E/VTK ( 2924): 7: #endif
  35. E/VTK ( 2924): 8:
  36. E/VTK ( 2924): 9: #if GL_ES==1 && __VERSION__<300
  37. E/VTK ( 2924): 10: #extension GL_OES_standard_derivatives : enable
  38. E/VTK ( 2924): 11: #endif
  39. E/VTK ( 2924): 12:
  40. E/VTK ( 2924): 13:
  41. E/VTK ( 2924): 14: /*=========================================================================
  42. E/VTK ( 2924): 15:
  43. E/VTK ( 2924): 16: Program: Visualization Toolkit
  44. E/VTK ( 2924): 17: Module: vtkPolyDataFS.glsl
  45. E/VTK ( 2924): 18:
  46. E/VTK ( 2924): 19: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
  47. E/VTK ( 2924): 20: All rights reserved.
  48. E/VTK ( 2924): 21: See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
  49. E/VTK ( 2924): 22:
  50. E/VTK ( 2924): 23: This software is distributed WITHOUT ANY WARRANTY; without even
  51. E/VTK ( 2924): 24: the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  52. E/VTK ( 2924): 25: PURPOSE. See the above copyright notice for more information.
  53. E/VTK ( 2924): 26:
  54. E/VTK ( 2924): 27: =========================================================================*/
  55. E/VTK ( 2924): 28: // Template for the polydata mappers fragment shader
  56. E/VTK ( 2924): 29:
  57. E/VTK ( 2924): 30: uniform int PrimitiveIDOffset;
  58. E/VTK ( 2924): 31:
  59. E/VTK ( 2924): 32: // VC position of this fragment
  60. E/VTK ( 2924): 33: varying vec4 vertexVCVSOutput;
  61. E/VTK ( 2924): 34:
  62. E/VTK ( 2924): 35: // optional color passed in from the vertex shader, vertexColor
  63. E/VTK ( 2924): 36: uniform float opacityUniform; // the fragment opacity
  64. E/VTK ( 2924): 37: uniform vec3 ambientColorUniform; // intensity weighted color
  65. E/VTK ( 2924): 38: uniform vec3 diffuseColorUniform; // intensity weighted color
  66. E/VTK ( 2924): 39: uniform vec3 specularColorUniform; // intensity weighted color
  67. E/VTK ( 2924): 40: uniform float specularPowerUniform;
  68. E/VTK ( 2924): 41:
  69. E/VTK ( 2924): 42:
  70. E/VTK ( 2924): 43: // optional surface normal declaration
  71. E/VTK ( 2924): 44: uniform int cameraParallel;
  72. E/VTK ( 2924): 45:
  73. E/VTK ( 2924): 46: // extra lighting parameters
  74. E/VTK ( 2924): 47: //VTK::Light::Dec
  75. E/VTK ( 2924): 48:
  76. E/VTK ( 2924): 49: // Texture coordinates
  77. E/VTK ( 2924): 50: //VTK::TCoord::Dec
  78. E/VTK ( 2924): 51:
  79. E/VTK ( 2924): 52: // picking support
  80. E/VTK ( 2924): 53: //VTK::Picking::Dec
  81. E/VTK ( 2924): 54:
  82. E/VTK ( 2924): 55: // Depth Peeling Support
  83. E/VTK ( 2924): 56: //VTK::DepthPeeling::Dec
  84. E/VTK ( 2924): 57:
  85. E/VTK ( 2924): 58: // clipping plane vars
  86. E/VTK ( 2924): 59: //VTK::Clip::Dec
  87. E/VTK ( 2924): 60:
  88. E/VTK ( 2924): 61: // the output of this shader
  89. E/VTK ( 2924): 62: //VTK::Output::Dec
  90. E/VTK ( 2924): 63:
  91. E/VTK ( 2924): 64: // Apple Bug
  92. E/VTK ( 2924): 65: //VTK::PrimID::Dec
  93. E/VTK ( 2924): 66:
  94. E/VTK ( 2924): 67: void main()
  95. E/VTK ( 2924): 68: {
  96. E/VTK ( 2924): 69: // Apple Bug
  97. E/VTK ( 2924): 70: //VTK::PrimID::Impl
  98. E/VTK ( 2924): 71:
  99. E/VTK ( 2924): 72: //VTK::Clip::Impl
  100. E/VTK ( 2924): 73:
  101. E/VTK ( 2924): 74: vec3 ambientColor;
  102. E/VTK ( 2924): 75: vec3 diffuseColor;
  103. E/VTK ( 2924): 76: float opacity;
  104. E/VTK ( 2924): 77: vec3 specularColor;
  105. E/VTK ( 2924): 78: float specularPower;
  106. E/VTK ( 2924): 79: ambientColor = ambientColorUniform;
  107. E/VTK ( 2924): 80: diffuseColor = diffuseColorUniform;
  108. E/VTK ( 2924): 81: opacity = opacityUniform;
  109. E/VTK ( 2924): 82: specularColor = specularColorUniform;
  110. E/VTK ( 2924): 83: specularPower = specularPowerUniform;
  111. E/VTK ( 2924): 84:
  112. E/VTK ( 2924): 85:
  113. E/VTK ( 2924): 86: // VC position of this fragment
  114. E/VTK ( 2924): 87: vec4 vertexVC = vertexVCVSOutput;
  115. E/VTK ( 2924): 88:
  116. E/VTK ( 2924): 89: // Generate the normal if we are not passed in one
  117. E/VTK ( 2924): 90: vec3 fdx = normalize(vec3(dFdx(vertexVC.x),dFdx(vertexVC.y),dFdx(vertexVC.z)));
  118. E/VTK ( 2924): 91: vec3 fdy = normalize(vec3(dFdy(vertexVC.x),dFdy(vertexVC.y),dFdy(vertexVC.z)));
  119. E/VTK ( 2924): 92: vec3 normalVCVSOutput = normalize(cross(fdx,fdy));
  120. E/VTK ( 2924): 93: if (cameraParallel == 1 && normalVCVSOutput.z < 0.0) { normalVCVSOutput = -1.0*normalVCVSOutput; }
  121. E/VTK ( 2924): 94: if (cameraParallel == 0 && dot(normalVCVSOutput,vertexVC.xyz) > 0.0) { normalVCVSOutput = -1.0*normalVCVSOutput; }
  122. E/VTK ( 2924): 95:
  123. E/VTK ( 2924): 96: float df = max(0.0, normalVCVSOutput.z);
  124. E/VTK ( 2924): 97: float sf = pow(df, specularPower);
  125. E/VTK ( 2924): 98: vec3 diffuse = df * diffuseColor;
  126. E/VTK ( 2924): 99: vec3 specular = sf * specularColor;
  127. E/VTK ( 2924): 100: gl_FragData[0] = vec4(ambientColor + diffuse + specular, opacity);
  128. E/VTK ( 2924): 101:
  129. E/VTK ( 2924): 102: //VTK::TCoord::Impl
  130. E/VTK ( 2924): 103:
  131. E/VTK ( 2924): 104: if (gl_FragData[0].a <= 0.0)
  132. E/VTK ( 2924): 105: {
  133. E/VTK ( 2924): 106: discard;
  134. E/VTK ( 2924): 107: }
  135. E/VTK ( 2924): 108:
  136. E/VTK ( 2924): 109: //VTK::DepthPeeling::Impl
  137. E/VTK ( 2924): 110:
  138. E/VTK ( 2924): 111: //VTK::Picking::Impl
  139. E/VTK ( 2924): 112:
  140. E/VTK ( 2924): 113: }
  141. E/VTK ( 2924): 114:
  142. E/VTK ( 2924): ERROR: In /Users/lonnibesancon/Desktop/VTKNew/Rendering/OpenGL2/vtkShaderProgram.cxx, line 370
  143. E/VTK ( 2924): vtkShaderProgram (0x766f6c68): 0:10: P0001: Extension directive must occur before any non-preprocessor tokens
  144. E/VTK ( 2924): 0:90: L0002: No matching function for call to 'dFdx'
  145. E/VTK ( 2924): 0:91: L0002: No matching function for call to 'dFdy'
  146. E/VTK ( 2924): 0:92: L0002: Undeclared variable 'fdx'
  147. E/VTK ( 2924): 0:93: L0002: Undeclared variable 'normalVCVSOutput'
  148. F/libc ( 2924): Fatal signal 11 (SIGSEGV) at 0x0000003c (code=1), thread 2938 (tware.NativeVTK)
  149. I/DEBUG ( 125): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  150. I/DEBUG ( 125): Build fingerprint: 'google/mantaray/manta:4.3/JWR66V/737497:user/release-keys'
  151. I/DEBUG ( 125): Revision: '8'
  152. I/DEBUG ( 125): pid: 2924, tid: 2938, name: tware.NativeVTK >>> com.kitware.NativeVTK <<<
  153. I/DEBUG ( 125): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0000003c
  154. I/DEBUG ( 125): r0 00000000 r1 741ac238 r2 00000000 r3 00000000
  155. I/DEBUG ( 125): r4 739a1414 r5 7221e898 r6 73770f30 r7 72212940
  156. I/DEBUG ( 125): r8 73770f30 r9 743b5e00 sl 72212990 fp 743b50cc
  157. I/DEBUG ( 125): ip 7397bfc4 sp 743b50a0 lr 739c7d08 pc 739c999c cpsr 20070010
  158. I/DEBUG ( 125): d0 535643566c616d4f d1 616c6365646e5575
  159. I/DEBUG ( 125): d2 6972617620646574 d3 6f6e2720656c6270
  160. I/DEBUG ( 125): d4 203a313030305020 d5 6f69736e65747845
  161. I/DEBUG ( 125): d6 746365726964206e d7 7473756d20657669
  162. I/DEBUG ( 125): d8 0000000000000000 d9 0000000000000000
  163. I/DEBUG ( 125): d10 0000000000000000 d11 0000000000000000
  164. I/DEBUG ( 125): d12 0000000000000000 d13 0000000000000000
  165. I/DEBUG ( 125): d14 0000000000000000 d15 0000000000000000
  166. I/DEBUG ( 125): d16 00000000757d123c d17 0000000000000004
  167. I/DEBUG ( 125): d18 00000000757d1238 d19 00000000757da6c8
  168. I/DEBUG ( 125): d20 3e5cc6ba580dda9f d21 0000000000000028
  169. I/DEBUG ( 125): d22 000000000003f668 d23 000000000003f640
  170. I/DEBUG ( 125): d24 0000000000000068 d25 0000000000000188
  171. I/DEBUG ( 125): d26 0000000000000120 d27 b94377ce858a5d48
  172. I/DEBUG ( 125): d28 3ff0000000000000 d29 4000000000000000
  173. I/DEBUG ( 125): d30 3ff921fb54400000 d31 3dd0b4611a626331
  174. I/DEBUG ( 125): scr 60000014
  175. I/DEBUG ( 125):
  176. I/DEBUG ( 125): backtrace:
  177. I/DEBUG ( 125): #00 pc 0061299c /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so (vtkShaderProgram::FindUniform(char const*)+36)
  178. I/DEBUG ( 125): #01 pc 00610d04 /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so (vtkShaderProgram::SetUniformi(char const*, int)+32)
  179. I/DEBUG ( 125):
  180. I/DEBUG ( 125): stack:
  181. I/DEBUG ( 125): 743b5060 743b5084 [stack:2938]
  182. I/DEBUG ( 125): 743b5064 7408deb8 /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so (std::basic_istringstream<char, std::char_traits<char>, std::allocator<char> >::~basic_istringstream()+124)
  183. I/DEBUG ( 125): 743b5068 00000027
  184. I/DEBUG ( 125): 743b506c 757d54e8
  185. I/DEBUG ( 125): 743b5070 743b531c [stack:2938]
  186. I/DEBUG ( 125): 743b5074 73784fc8 /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so (vtkAndroidOutputWindow::DisplayErrorText(char const*)+292)
  187. I/DEBUG ( 125): 743b5078 757d58d0
  188. I/DEBUG ( 125): 743b507c 757d54e8
  189. I/DEBUG ( 125): 743b5080 742b4b4c
  190. I/DEBUG ( 125): 743b5084 7420d60c /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so
  191. I/DEBUG ( 125): 743b5088 00000000
  192. I/DEBUG ( 125): 743b508c 7420d6c0 /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so
  193. I/DEBUG ( 125): 743b5090 757d5a7c
  194. I/DEBUG ( 125): 743b5094 757d5c10
  195. I/DEBUG ( 125): 743b5098 df0027ad
  196. I/DEBUG ( 125): 743b509c 00000000
  197. I/DEBUG ( 125): #00 743b50a0 741ac238 /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so
  198. I/DEBUG ( 125): 743b50a4 00000000
  199. I/DEBUG ( 125): 743b50a8 742b4b2c
  200. I/DEBUG ( 125): 743b50ac 00000008
  201. I/DEBUG ( 125): 743b50b0 757d5a7c
  202. I/DEBUG ( 125): 743b50b4 74230b50 /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so
  203. I/DEBUG ( 125): 743b50b8 00000006
  204. I/DEBUG ( 125): 743b50bc 00000000
  205. I/DEBUG ( 125): 743b50c0 00001002
  206. I/DEBUG ( 125): 743b50c4 739a1414 /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so (vtkOpenGLShaderCache::ReadyShaderProgram(std::map<vtkShader::Type, vtkShader*, std::less<vtkShader::Type>, std::allocator<std::pair<vtkShader::Type const, vtkShader*> > >))
  207. I/DEBUG ( 125): 743b50c8 743b5104 [stack:2938]
  208. I/DEBUG ( 125): 743b50cc 739c7d08 /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so (vtkShaderProgram::SetUniformi(char const*, int)+36)
  209. I/DEBUG ( 125): 743b50d0 00000000
  210. I/DEBUG ( 125): 743b50d4 00000000
  211. I/DEBUG ( 125): 743b50d8 741ac238 /data/app-lib/com.kitware.NativeVTK-1/libNativeVTK.so
  212. I/DEBUG ( 125): 743b50dc 00000000
  213. I/DEBUG ( 125):
  214. I/DEBUG ( 125): memory near r1:
  215. I/DEBUG ( 125): 741ac218 6c696166 61206465 72657466 64705520
  216. I/DEBUG ( 125): 741ac228 53657461 65646168 00000072 00000020
  217. I/DEBUG ( 125): 741ac238 6d697250 76697469 4f444965 65736666
  218. I/DEBUG ( 125): 741ac248 00000074 74726576 434d7865 00000000
  219. I/DEBUG ( 125): 741ac258 6f727245 65732072 6e697474 76272067
  220. I/DEBUG ( 125): 741ac268 65747265 27434d78 206e6920 64616873
  221. I/DEBUG ( 125): 741ac278 56207265 002e4f41 6d726f6e 434d6c61
  222. I/DEBUG ( 125): 741ac288 00000000 6f727245 65732072 6e697474
  223. I/DEBUG ( 125): 741ac298 6e272067 616d726f 27434d6c 206e6920
  224. I/DEBUG ( 125): 741ac2a8 64616873 56207265 002e4f41 6f6f6374
  225. I/DEBUG ( 125): 741ac2b8 434d6472 00000000 6f727245 65732072
  226. I/DEBUG ( 125): 741ac2c8 6e697474 74272067 726f6f63 27434d64
  227. I/DEBUG ( 125): 741ac2d8 206e6920 64616873 56207265 002e4f41
  228. I/DEBUG ( 125): 741ac2e8 6c616373 6f437261 00726f6c 6f727245
  229. I/DEBUG ( 125): 741ac2f8 65732072 6e697474 73272067 616c6163
  230. I/DEBUG ( 125): 741ac308 6c6f4372 2027726f 73206e69 65646168
  231. I/DEBUG ( 125):
  232. I/DEBUG ( 125): memory near r4:
  233. I/DEBUG ( 125): 739a13f4 eb1b4ed9 e1a00003 e24bd004 e8bd8800
  234. I/DEBUG ( 125): 739a1404 0080e734 0080e710 0080e6a0 0080e688
  235. I/DEBUG ( 125): 739a1414 e92d4810 e28db008 e24dd054 e50b0058
  236. I/DEBUG ( 125): 739a1424 e50b105c e3a03000 e50b3044 e24b3044
  237. I/DEBUG ( 125): 739a1434 e51b005c e1a01003 ebfd8239 e1a03000
  238. I/DEBUG ( 125): 739a1444 e5933000 e24b2048 e1a00002 e1a01003
  239. I/DEBUG ( 125): 739a1454 ebfd679a e3a03001 e50b3040 e24b3040
  240. I/DEBUG ( 125): 739a1464 e51b005c e1a01003 ebfd822d e1a03000
  241. I/DEBUG ( 125): 739a1474 e5933000 e24b204c e1a00002 e1a01003
  242. I/DEBUG ( 125): 739a1484 ebfd678e e3a03002 e50b303c e24b303c
  243. I/DEBUG ( 125): 739a1494 e51b005c e1a01003 ebfd8221 e1a03000
  244. I/DEBUG ( 125): 739a14a4 e5933000 e24b2050 e1a00002 e1a01003
  245. I/DEBUG ( 125): 739a14b4 ebfd6782 e51b3058 e5933000 e2833068
  246. I/DEBUG ( 125): 739a14c4 e593c000 e24b1048 e24b204c e24b3050
  247. I/DEBUG ( 125): 739a14d4 e51b0058 e12fff3c e1a03000 e50b3010
  248. I/DEBUG ( 125): 739a14e4 e3a03000 e50b3038 e24b3038 e51b005c
  249. I/DEBUG ( 125):
  250. I/DEBUG ( 125): memory near r5:
  251. I/DEBUG ( 125): 7221e878 00000000 00000198 00000000 00000001
  252. I/DEBUG ( 125): 7221e888 7221e968 7221e968 00000000 0000002b
  253. I/DEBUG ( 125): 7221e898 74215f10 00000000 00000001 00000000
  254. I/DEBUG ( 125): 7221e8a8 00000000 00000197 00000000 7221e8c0
  255. I/DEBUG ( 125): 7221e8b8 766f3550 00000023 7221e8e0 00000000
  256. I/DEBUG ( 125): 7221e8c8 00000000 766f35d0 766f35d0 757d3380
  257. I/DEBUG ( 125): 7221e8d8 00000002 00000063 00008400 00000000
  258. I/DEBUG ( 125): 7221e8e8 d71d4ce0 a933d673 5ad11992 9ca912ab
  259. I/DEBUG ( 125): 7221e8f8 4b54562f 65443a3a 50687470 696c6565
  260. I/DEBUG ( 125): 7221e908 3a3a676e 6c706d49 20200a0a 54562f2f
  261. I/DEBUG ( 125): 7221e918 503a3a4b 696b6369 3a3a676e 6c706d49
  262. I/DEBUG ( 125): 7221e928 0a7d0a0a 0000800a 000083a8 00000000
  263. I/DEBUG ( 125): 7221e938 00000000 0000002b 75736956 7a696c61
  264. I/DEBUG ( 125): 7221e948 6f697461 6f54206e 696b6c6f 202d2074
  265. I/DEBUG ( 125): 7221e958 6e65704f 00004c47 00000000 00000013
  266. I/DEBUG ( 125): 7221e968 7221dd28 00000000 00000000 00000013
  267. I/DEBUG ( 125):
  268. I/DEBUG ( 125): memory near r6:
  269. I/DEBUG ( 125): 73770f10 e1a01002 e12fff33 e15b30d5 e51b0010
  270. I/DEBUG ( 125): 73770f20 e1a01003 ebffff2b e24bd004 e8bd8800
  271. I/DEBUG ( 125): 73770f30 e92d4800 e28db004 e24dd018 e50b0010
  272. I/DEBUG ( 125): 73770f40 e51b3010 e50b3008 ebfff5db e1a02000
  273. I/DEBUG ( 125): 73770f50 e51b3008 e5832010 e51b3008 e5932010
  274. I/DEBUG ( 125): 73770f60 e51b3008 e593300c e5933020 e1a00002
  275. I/DEBUG ( 125): 73770f70 e1a01003 ebfff5be e51b0008 ebfffdd0
  276. I/DEBUG ( 125): 73770f80 e51b3008 e3a02001 e5832054 e51b3008
  277. I/DEBUG ( 125): 73770f90 e51b2008 e5832058 e51b3008 e59f20d0
  278. I/DEBUG ( 125): 73770fa0 e08f2002 e583205c e51b3008 e3a02002
  279. I/DEBUG ( 125): 73770fb0 e5832060 e51b3008 e51b2008 e5832064
  280. I/DEBUG ( 125): 73770fc0 e51b3008 e59f20ac e08f2002 e5832068
  281. I/DEBUG ( 125): 73770fd0 e3a00001 ebfff5bb e1a03000 e50b300c
  282. I/DEBUG ( 125): 73770fe0 e51b3008 e5931048 e51b3008 e2833054
  283. I/DEBUG ( 125): 73770ff0 e3a02000 e58d2000 e58d3004 e51b000c
  284. I/DEBUG ( 125): 73771000 e3a02001 e3a03001 ebfff5b1 e51b3008
  285. I/DEBUG ( 125):
  286. I/DEBUG ( 125): memory near r7:
  287. I/DEBUG ( 125): 72212920 2e6d6f63 7774696b 2e657261 6974614e
  288. I/DEBUG ( 125): 72212930 54566576 00fe004b 00fefdfd 0000009b
  289. I/DEBUG ( 125): 72212940 72212cf8 739e1840 739e1ae8 722126e0
  290. I/DEBUG ( 125): 72212950 722127e0 00000000 00000000 72212c20
  291. I/DEBUG ( 125): 72212960 7221f7d0 7222def0 00000000 00000000
  292. I/DEBUG ( 125): 72212970 00000000 00000000 0000000b 00000000
  293. I/DEBUG ( 125): 72212980 00000000 fffffff6 00000029 0000002a
  294. I/DEBUG ( 125): 72212990 722129d8 00000001 72212940 73770ebc
  295. I/DEBUG ( 125): 722129a0 00000002 72212940 73770db8 00000001
  296. I/DEBUG ( 125): 722129b0 00000000 00000000 00000000 7221f7d0
  297. I/DEBUG ( 125): 722129c0 7222def0 00000000 00000000 00000000
  298. I/DEBUG ( 125): 722129d0 00000000 0000024b 70bd65c0 7223ebc8
  299. I/DEBUG ( 125): 722129e0 00000001 742b6000 00100000 00001000
  300. I/DEBUG ( 125): 722129f0 00000000 00000000 00000b7a 00000001
  301. I/DEBUG ( 125): 72212a00 00000000 00000000 00000000 00000000
  302. I/DEBUG ( 125): 72212a10 00000000 743b5e00 65646e75 656e6966
  303. I/DEBUG ( 125):
  304. I/DEBUG ( 125): memory near r8:
  305. I/DEBUG ( 125): 73770f10 e1a01002 e12fff33 e15b30d5 e51b0010
  306. I/DEBUG ( 125): 73770f20 e1a01003 ebffff2b e24bd004 e8bd8800
  307. I/DEBUG ( 125): 73770f30 e92d4800 e28db004 e24dd018 e50b0010
  308. I/DEBUG ( 125): 73770f40 e51b3010 e50b3008 ebfff5db e1a02000
  309. I/DEBUG ( 125): 73770f50 e51b3008 e5832010 e51b3008 e5932010
  310. I/DEBUG ( 125): 73770f60 e51b3008 e593300c e5933020 e1a00002
  311. I/DEBUG ( 125): 73770f70 e1a01003 ebfff5be e51b0008 ebfffdd0
  312. I/DEBUG ( 125): 73770f80 e51b3008 e3a02001 e5832054 e51b3008
  313. I/DEBUG ( 125): 73770f90 e51b2008 e5832058 e51b3008 e59f20d0
  314. I/DEBUG ( 125): 73770fa0 e08f2002 e583205c e51b3008 e3a02002
  315. I/DEBUG ( 125): 73770fb0 e5832060 e51b3008 e51b2008 e5832064
  316. I/DEBUG ( 125): 73770fc0 e51b3008 e59f20ac e08f2002 e5832068
  317. I/DEBUG ( 125): 73770fd0 e3a00001 ebfff5bb e1a03000 e50b300c
  318. I/DEBUG ( 125): 73770fe0 e51b3008 e5931048 e51b3008 e2833054
  319. I/DEBUG ( 125): 73770ff0 e3a02000 e58d2000 e58d3004 e51b000c
  320. I/DEBUG ( 125): 73771000 e3a02001 e3a03001 ebfff5b1 e51b3008
  321. I/DEBUG ( 125):
  322. I/DEBUG ( 125): memory near r9:
  323. I/DEBUG ( 125): 743b5de0 722129d8 40077b4c 72212940 40054f04
  324. I/DEBUG ( 125): 743b5df0 00000002 00100000 00000078 40077cc8
  325. I/DEBUG ( 125): 743b5e00 743b5e00 722129d8 00000002 40505ad8
  326. I/DEBUG ( 125): 743b5e10 00000000 7f00fc1f 72212a18 00000000
  327. I/DEBUG ( 125): 743b5e20 00000000 00000000 00000000 00000000
  328. I/DEBUG ( 125): 743b5e30 00000000 00000000 00000000 00000000
  329. I/DEBUG ( 125): 743b5e40 00000000 00000000 00000000 00000000
  330. I/DEBUG ( 125): 743b5e50 7221e9b8 72212c20 00000000 72233618
  331. I/DEBUG ( 125): 743b5e60 00000000 00000000 00000000 7226c4d8
  332. I/DEBUG ( 125): 743b5e70 00000000 00000000 00000000 00000000
  333. I/DEBUG ( 125): 743b5e80 00000000 00000000 00000000 00000000
  334. I/DEBUG ( 125): 743b5e90 00000000 00000000 00000000 00000000
  335. I/DEBUG ( 125): 743b5ea0 00000000 00000000 00000000 00000000
  336. I/DEBUG ( 125): 743b5eb0 00000000 00000000 00000000 00000000
  337. I/DEBUG ( 125): 743b5ec0 00000000 00000000 00000000 00000000
  338. I/DEBUG ( 125): 743b5ed0 00000000 00000000 00000000 00000000
  339. I/DEBUG ( 125):
  340. I/DEBUG ( 125): memory near sl:
  341. I/DEBUG ( 125): 72212970 00000000 00000000 0000000b 00000000
  342. I/DEBUG ( 125): 72212980 00000000 fffffff6 00000029 0000002a
  343. I/DEBUG ( 125): 72212990 722129d8 00000001 72212940 73770ebc
  344. I/DEBUG ( 125): 722129a0 00000002 72212940 73770db8 00000001
  345. I/DEBUG ( 125): 722129b0 00000000 00000000 00000000 7221f7d0
  346. I/DEBUG ( 125): 722129c0 7222def0 00000000 00000000 00000000
  347. I/DEBUG ( 125): 722129d0 00000000 0000024b 70bd65c0 7223ebc8
  348. I/DEBUG ( 125): 722129e0 00000001 742b6000 00100000 00001000
  349. I/DEBUG ( 125): 722129f0 00000000 00000000 00000b7a 00000001
  350. I/DEBUG ( 125): 72212a00 00000000 00000000 00000000 00000000
  351. I/DEBUG ( 125): 72212a10 00000000 743b5e00 65646e75 656e6966
  352. I/DEBUG ( 125): 72212a20 79732064 6c6f626d 6c67203a 696c6156
  353. I/DEBUG ( 125): 72212a30 65746164 676f7250 506d6172 6c657069
  354. I/DEBUG ( 125): 72212a40 45656e69 454f5458 00530053 454f454c
  355. I/DEBUG ( 125): 72212a50 00000053 00000000 00000000 00000000
  356. I/DEBUG ( 125): 72212a60 00000000 00000000 00000000 00000000
  357. I/DEBUG ( 125):
  358. I/DEBUG ( 125): memory near fp:
  359. I/DEBUG ( 125): 743b50ac 00000008 757d5a7c 74230b50 00000006
  360. I/DEBUG ( 125): 743b50bc 00000000 00001002 739a1414 743b5104
  361. I/DEBUG ( 125): 743b50cc 739c7d08 00000000 00000000 741ac238
  362. I/DEBUG ( 125): 743b50dc 00000000 00000000 00000000 00000000
  363. I/DEBUG ( 125): 743b50ec 00000000 00000000 00000000 00000000
  364. I/DEBUG ( 125): 743b50fc 739a1414 743b541c 7397c008 757d5428
  365. I/DEBUG ( 125): 743b510c 7221e898 73770f30 757d5430 757d1230
  366. I/DEBUG ( 125): 743b511c 7221e898 7221d5a0 7221dd28 7221c20c
  367. I/DEBUG ( 125): 743b512c 7221bfa8 400b3000 743b516c 743b51c0
  368. I/DEBUG ( 125): 743b513c 743b519c 7221e898 74076fa8 743b516c
  369. I/DEBUG ( 125): 743b514c 7408deb8 00000000 743b531c 00000000
  370. I/DEBUG ( 125): 743b515c 739c6e7c 00000000 766f6c68 757d32bc
  371. I/DEBUG ( 125): 743b516c 7420d60c 00000000 7420d6c0 757d1244
  372. I/DEBUG ( 125): 743b517c 757d1dc1 757d1dc1 00000000 00000000
  373. I/DEBUG ( 125): 743b518c 00000000 742b4b2c 00000008 757d1244
  374. I/DEBUG ( 125): 743b519c 74230b50 00000006 00000000 00001002
  375. I/DEBUG ( 125):
  376. I/DEBUG ( 125): memory near ip:
  377. I/DEBUG ( 125): 7397bfa4 0082c9e4 0082c9b0 0082c98c 00830408
  378. I/DEBUG ( 125): 7397bfb4 0083040c 0082c938 0082f780 0082f73c
  379. I/DEBUG ( 125): 7397bfc4 e92d4870 e28db010 e24ddfc1 e50b02f0
  380. I/DEBUG ( 125): 7397bfd4 e50b12f4 e50b22f8 e50b32fc e51b32f4
  381. I/DEBUG ( 125): 7397bfe4 e5932000 e51b32f0 e593330c e1a00002
  382. I/DEBUG ( 125): 7397bff4 e59f2e38 e08f2002 e1a01002 e1a02003
  383. I/DEBUG ( 125): 7397c004 eb012f36 e51b32f4 e5933010 e5933028
  384. I/DEBUG ( 125): 7397c014 e3530000 0a000015 e51b32f0 e2832c03
  385. I/DEBUG ( 125): 7397c024 e51b32f4 e283300c e1a00002 e1a01003
  386. I/DEBUG ( 125): 7397c034 ebfc7302 e1a03000 e3530000 1a000009
  387. I/DEBUG ( 125): 7397c044 e51b32f4 e2832004 e51b32f4 e283300c
  388. I/DEBUG ( 125): 7397c054 e1a00002 e1a01003 ebfc72f8 e1a03000
  389. I/DEBUG ( 125): 7397c064 e3530000 0a000001 e3a03001 ea000000
  390. I/DEBUG ( 125): 7397c074 e3a03000 e3530000 0a00034b e51b32f4
  391. I/DEBUG ( 125): 7397c084 e5933008 e1a00003 eb00b75f e51b32f4
  392. I/DEBUG ( 125): 7397c094 e5936008 e51b32f4 e5935000 e51b32f0
  393. I/DEBUG ( 125):
  394. I/DEBUG ( 125): memory near sp:
  395. I/DEBUG ( 125): 743b5080 742b4b4c 7420d60c 00000000 7420d6c0
  396. I/DEBUG ( 125): 743b5090 757d5a7c 757d5c10 df0027ad 00000000
  397. I/DEBUG ( 125): 743b50a0 741ac238 00000000 742b4b2c 00000008
  398. I/DEBUG ( 125): 743b50b0 757d5a7c 74230b50 00000006 00000000
  399. I/DEBUG ( 125): 743b50c0 00001002 739a1414 743b5104 739c7d08
  400. I/DEBUG ( 125): 743b50d0 00000000 00000000 741ac238 00000000
  401. I/DEBUG ( 125): 743b50e0 00000000 00000000 00000000 00000000
  402. I/DEBUG ( 125): 743b50f0 00000000 00000000 00000000 739a1414
  403. I/DEBUG ( 125): 743b5100 743b541c 7397c008 757d5428 7221e898
  404. I/DEBUG ( 125): 743b5110 73770f30 757d5430 757d1230 7221e898
  405. I/DEBUG ( 125): 743b5120 7221d5a0 7221dd28 7221c20c 7221bfa8
  406. I/DEBUG ( 125): 743b5130 400b3000 743b516c 743b51c0 743b519c
  407. I/DEBUG ( 125): 743b5140 7221e898 74076fa8 743b516c 7408deb8
  408. I/DEBUG ( 125): 743b5150 00000000 743b531c 00000000 739c6e7c
  409. I/DEBUG ( 125): 743b5160 00000000 766f6c68 757d32bc 7420d60c
  410. I/DEBUG ( 125): 743b5170 00000000 7420d6c0 757d1244 757d1dc1
  411. I/DEBUG ( 125):
  412. I/DEBUG ( 125): code around pc:
  413. I/DEBUG ( 125): 739c997c e28db008 e24dd024 e50b0028 e50b102c
  414. I/DEBUG ( 125): 739c998c e51b302c e3530000 0a000005 e51b3028
  415. I/DEBUG ( 125): 739c999c e5d3303c e2233001 e6ef3073 e3530000
  416. I/DEBUG ( 125): 739c99ac 0a000001 e3e03000 ea000046 e51b3028
  417. I/DEBUG ( 125): 739c99bc e593302c e1a00003 e51b102c ebf694c1
  418. I/DEBUG ( 125): 739c99cc e1a03000 e50b3010 e51b3010 e3730001
  419. I/DEBUG ( 125): 739c99dc 1a00002a e51b3028 e2834044 e24b3014
  420. I/DEBUG ( 125): 739c99ec e1a00003 eb1ab40b e24b2018 e24b3014
  421. I/DEBUG ( 125): 739c99fc e1a00002 e51b102c e1a02003 eb1b69e0
  422. I/DEBUG ( 125): 739c9a0c e24b201c e24b3018 e1a00002 e59f20c0
  423. I/DEBUG ( 125): 739c9a1c e08f2002 e1a01002 e1a02003 ebfee9ad
  424. I/DEBUG ( 125): 739c9a2c e24b2020 e24b301c e1a00002 e1a01003
  425. I/DEBUG ( 125): 739c9a3c e59f30a0 e08f3003 e1a02003 ebfc0c19
  426. I/DEBUG ( 125): 739c9a4c e24b3020 e1a00004 e1a01003 eb1b68c4
  427. I/DEBUG ( 125): 739c9a5c e24b3020 e1a00003 eb1b657c e24b301c
  428. I/DEBUG ( 125): 739c9a6c e1a00003 eb1b6579 e24b3018 e1a00003
  429. I/DEBUG ( 125):
  430. I/DEBUG ( 125): code around lr:
  431. I/DEBUG ( 125): 739c7ce8 e28db008 e24dd02c e50b0028 e50b102c
  432. I/DEBUG ( 125): 739c7cf8 e50b2030 e51b0028 e51b102c eb00071b
  433. I/DEBUG ( 125): 739c7d08 e1a03000 e50b3010 e51b3010 e3730001
  434. I/DEBUG ( 125): 739c7d18 1a00002c e51b3028 e2834044 e24b3014
  435. I/DEBUG ( 125): 739c7d28 e1a00003 eb1abb3c e24b2018 e24b3014
  436. I/DEBUG ( 125): 739c7d38 e1a00002 e51b102c e1a02003 eb1b7111
  437. I/DEBUG ( 125): 739c7d48 e24b201c e24b3018 e1a00002 e59f20d4
  438. I/DEBUG ( 125): 739c7d58 e08f2002 e1a01002 e1a02003 ebfef0de
  439. I/DEBUG ( 125): 739c7d68 e24b2020 e24b301c e1a00002 e1a01003
  440. I/DEBUG ( 125): 739c7d78 e59f30b4 e08f3003 e1a02003 ebfc134a
  441. I/DEBUG ( 125): 739c7d88 e24b3020 e1a00004 e1a01003 eb1b6ff5
  442. I/DEBUG ( 125): 739c7d98 e24b3020 e1a00003 eb1b6cad e24b301c
  443. I/DEBUG ( 125): 739c7da8 e1a00003 eb1b6caa e24b3018 e1a00003
  444. I/DEBUG ( 125): 739c7db8 eb1b6ca7 e24b3014 e1a00003 eb1abb18
  445. I/DEBUG ( 125): 739c7dc8 e3a03000 ea000014 e51b0010 e51b1030
  446. I/DEBUG ( 125): 739c7dd8 ebf69b9f e3a03001 ea00000f e24b3020
  447. D/NativeCrashListener( 413): Closing socket connection: FileDescriptor[211]
  448. I/BootReceiver( 413): Copying /data/tombstones/tombstone_05 to DropBox (SYSTEM_TOMBSTONE)
  449. W/ActivityManager( 413): Force finishing activity com.kitware.NativeVTK/android.app.NativeActivity
  450. W/InputDispatcher( 413): channel '42382fa8 com.kitware.NativeVTK/android.app.NativeActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x9
  451. E/InputDispatcher( 413): channel '42382fa8 com.kitware.NativeVTK/android.app.NativeActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
  452. W/InputDispatcher( 413): Attempted to unregister already unregistered input channel '42382fa8 com.kitware.NativeVTK/android.app.NativeActivity (server)'
  453. I/WindowState( 413): WIN DEATH: Window{42382fa8 u0 com.kitware.NativeVTK/android.app.NativeActivity}
  454. I/WindowManager( 413): Screenshot Window{42382fa8 u0 com.kitware.NativeVTK/android.app.NativeActivity EXITING} was all black! mSurfaceLayer=21010 minLayer=21000 maxLayer=21010
  455. W/ActivityManager( 413): Exception thrown during pause
  456. W/ActivityManager( 413): android.os.DeadObjectException
  457. W/ActivityManager( 413): at android.os.BinderProxy.transact(Native Method)
  458. W/ActivityManager( 413): at android.app.ApplicationThreadProxy.schedulePauseActivity(ApplicationThreadNative.java:635)
  459. W/ActivityManager( 413): at com.android.server.am.ActivityStack.startPausingLocked(ActivityStack.java:1014)
  460. W/ActivityManager( 413): at com.android.server.am.ActivityStack.finishActivityLocked(ActivityStack.java:3897)
  461. W/ActivityManager( 413): at com.android.server.am.ActivityStack.finishActivityLocked(ActivityStack.java:3829)
  462. W/ActivityManager( 413): at com.android.server.am.ActivityManagerService.handleAppCrashLocked(ActivityManagerService.java:8473)
  463. W/ActivityManager( 413): at com.android.server.am.ActivityManagerService.makeAppCrashingLocked(ActivityManagerService.java:8350)
  464. W/ActivityManager( 413): at com.android.server.am.ActivityManagerService.crashApplication(ActivityManagerService.java:9029)
  465. W/ActivityManager( 413): at com.android.server.am.ActivityManagerService.handleApplicationCrashInner(ActivityManagerService.java:8584)
  466. W/ActivityManager( 413): at com.android.server.am.NativeCrashListener$NativeCrashReporter.run(NativeCrashListener.java:86)
  467. I/ActivityManager( 413): Process com.kitware.NativeVTK (pid 2924) has died.
  468. D/Zygote ( 127): Process 2924 terminated by signal (11)
  469. D/mali_winsys( 676): new_window_surface returns 0x3000
  470. W/InputMethodManagerService( 413): Got RemoteException sending setActive(false) notification to pid 2924 uid 10053
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement