Skip to content

Vulkan [Windows, Android]: vkUpdateDescriptorSets access violation after ~ProgramImpl() #3035

@solan-solan

Description

@solan-solan
  • axmol version: dev
  • devices test on: xiaomi 11 lite 5g ne, Lenovo laptop
  • developing environments
    • NDK version: r23c
    • Xcode version: 14.2+
    • Visual Studio:
      • VS version: 2022 (17.9+)
      • MSVC version: 19.39+
      • Windows SDK version: 10.0.22621.0+
    • cmake version:
      Steps to Reproduce:
Image

When one level of my game is unloaded I remove custom shader programs. Then I create shader programs again for the next level to be loaded. These are the same shaders with the same progId in the case when the same level just reloaded from menu.
And this issue arise everytime when this code static_cast<DriverImpl*>(axdrv)->removeCachedPipelineObjects(this); is called from the ~ProgramImpl() . There is no issue if removeCachedPipelineObjects is commented.

I did the following test:

  1. Added
Renderer.cpp
    _renderPipeline = driver->createRenderPipeline();
    +_renderPipeline->autorelease();
    _context->setRenderPipeline(_renderPipeline);
  1. Call this after custom programs were removed when my level unloaded
Director::getInstance()->getRenderer()->getContext()->setRenderPipeline(nullptr);
auto* rpl = axdrv->createRenderPipeline();
rpl->autorelease();
Director::getInstance()->getRenderer()->getContext()->setRenderPipeline(rpl);

The issue anyway appears, but not everytime. The level can be reloaded many times before it arises.
There are logs of my devices and error log on Android.

Window device:

axmol: vulkan gladVulkanVer: 1.3
axmol: available device extensions:
    VK_EXT_full_screen_exclusive
    VK_KHR_swapchain
    VK_KHR_external_memory
    VK_KHR_external_memory_win32
    VK_EXT_external_memory_host
    VK_KHR_external_semaphore
    VK_KHR_external_semaphore_win32
    VK_KHR_external_fence
    VK_KHR_external_fence_win32
    VK_KHR_timeline_semaphore
    VK_KHR_win32_keyed_mutex
    VK_KHR_get_memory_requirements2
    VK_KHR_bind_memory2
    VK_KHR_dedicated_allocation
    VK_KHR_sampler_mirror_clamp_to_edge
    VK_KHR_maintenance1
    VK_KHR_maintenance2
    VK_KHR_maintenance3
    VK_KHR_maintenance4
    VK_KHR_synchronization2
    VK_KHR_shader_draw_parameters
    VK_KHR_push_descriptor
    VK_KHR_descriptor_update_template
    VK_KHR_multiview
    VK_KHR_shader_float16_int8
    VK_KHR_shader_float_controls
    VK_KHR_16bit_storage
    VK_KHR_8bit_storage
    VK_EXT_shader_subgroup_ballot
    VK_EXT_shader_subgroup_vote
    VK_KHR_storage_buffer_storage_class
    VK_KHR_variable_pointers
    VK_KHR_relaxed_block_layout
    VK_EXT_sampler_filter_minmax
    VK_KHR_device_group
    VK_EXT_ycbcr_2plane_444_formats
    VK_EXT_4444_formats
    VK_EXT_post_depth_coverage
    VK_EXT_shader_viewport_index_layer
    VK_EXT_shader_stencil_export
    VK_EXT_conservative_rasterization
    VK_EXT_sample_locations
    VK_KHR_draw_indirect_count
    VK_EXT_multi_draw
    VK_KHR_image_format_list
    VK_EXT_vertex_attribute_divisor
    VK_EXT_descriptor_indexing
    VK_EXT_inline_uniform_block
    VK_KHR_create_renderpass2
    VK_KHR_dynamic_rendering
    VK_KHR_swapchain_mutable_format
    VK_KHR_depth_stencil_resolve
    VK_KHR_driver_properties
    VK_KHR_vulkan_memory_model
    VK_EXT_conditional_rendering
    VK_EXT_hdr_metadata
    VK_EXT_depth_clip_enable
    VK_EXT_depth_clip_control
    VK_EXT_scalar_block_layout
    VK_KHR_imageless_framebuffer
    VK_KHR_buffer_device_address
    VK_EXT_buffer_device_address
    VK_EXT_host_query_reset
    VK_KHR_performance_query
    VK_NV_device_diagnostic_checkpoints
    VK_KHR_separate_depth_stencil_layouts
    VK_KHR_shader_clock
    VK_KHR_spirv_1_4
    VK_KHR_uniform_buffer_standard_layout
    VK_EXT_separate_stencil_usage
    VK_EXT_fragment_shader_interlock
    VK_EXT_index_type_uint8
    VK_EXT_primitive_topology_list_restart
    VK_KHR_shader_subgroup_extended_types
    VK_EXT_line_rasterization
    VK_EXT_memory_budget
    VK_EXT_memory_priority
    VK_EXT_texel_buffer_alignment
    VK_INTEL_performance_query
    VK_EXT_subgroup_size_control
    VK_EXT_shader_demote_to_helper_invocation
    VK_EXT_pipeline_creation_feedback
    VK_EXT_pipeline_creation_cache_control
    VK_KHR_pipeline_executable_properties
    VK_EXT_transform_feedback
    VK_EXT_provoking_vertex
    VK_EXT_extended_dynamic_state
    VK_EXT_extended_dynamic_state2
    VK_EXT_vertex_input_dynamic_state
    VK_EXT_custom_border_color
    VK_EXT_robustness2
    VK_EXT_image_robustness
    VK_EXT_calibrated_timestamps
    VK_KHR_shader_integer_dot_product
    VK_KHR_shader_subgroup_uniform_control_flow
    VK_KHR_shader_terminate_invocation
    VK_KHR_workgroup_memory_explicit_layout
    VK_EXT_shader_atomic_float
    VK_KHR_copy_commands2
    VK_KHR_shader_non_semantic_info
    VK_KHR_zero_initialize_workgroup_memory
    VK_EXT_shader_atomic_float2
    VK_EXT_global_priority
    VK_EXT_global_priority_query
    VK_KHR_global_priority
    VK_KHR_format_feature_flags2
    VK_EXT_color_write_enable
    VK_EXT_private_data
    VK_EXT_image_2d_view_of_3d
axmol: VK_EXT_extended_dynamic_state extension supported
axmol: Vulkan device=Intel(R) HD Graphics 620, driverVersion=0.404
axmol: dynamicPrimitiveTopologyUnrestricted not supported or extensions missing, fallback to baked InputAssemblyState
axmol: samplerAnisotropy supported=1
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_69be0349401be4dd\igdml64.dll'. Symbol loading disabled by Include/Exclude setting.
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\windows.storage.dll'. Symbol loading disabled by Include/Exclude setting.
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\TextInputFramework.dll'. Symbol loading disabled by Include/Exclude setting.
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\CoreUIComponents.dll'. Symbol loading disabled by Include/Exclude setting.
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\oleacc.dll'. Symbol loading disabled by Include/Exclude setting.

{
    window.platform: Win32
    supports_ASTC: true
    max_samples_allowed: 31
    axmol.build_type: DEBUG
    shader: SPIR-V 1.x
    supports_OES_depth24: true
    axmol.version: 3.0.0-f1b952e
    supports_ETC2: false
    max_texture_size: 16384
    vendor: Intel
    supports_BGRA8888: true
    supports_ETC1: false
    max_vertex_attributes: 16
    supports_NPOT: true
    supports_vertex_array_object: true
    supports_ATITC: false
    supports_PVRTC: false
    axmol.compiled_with_gl_state_cache: true
    max_texture_units: 32
    supports_discard_framebuffer: false
    supports_S3TC: true
    axmol.simd: SSE41
    version: Vulkan-1.3.215
    supports_OES_map_buffer: false
    supports_OES_packed_depth_stencil: true
    renderer: Intel(R) HD Graphics 620
    axmol.compiled_with_profiler: false
}


Creating swapchain: 1600x900, format=37, presentMode=2, preferredImageCount=3
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\Windows.StateRepositoryCore.dll'. Symbol loading disabled by Include/Exclude setting.
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_69be0349401be4dd\ig9icd64.dll'. Symbol loading disabled by Include/Exclude setting.
vkGetSwapchainImagesKHR returned 3 images
Load program: 20 lineColor_vs, lineColor_fs ok
fullPathForFilename: No file found at res/cutscn/4. Possible missing file.
Load program: 5 positionTextureColor_vs, positionTextureColor_fs ok
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\TextShaping.dll'. Symbol loading disabled by Include/Exclude setting.
Load program: 9 positionTextureColor_vs, label_normal_fs ok
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\clbcatq.dll'. Symbol loading disabled by Include/Exclude setting.
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\ApplicationTargetedFeatureDatabase.dll'. Symbol loading disabled by Include/Exclude setting.
'Dummy.exe' (Win32): Loaded 'C:\Windows\System32\twinapi.appcore.dll'. Symbol loading disabled by Include/Exclude setting.
The thread 'ShellHandwriting Delegate Thread' (19788) has exited with code 0 (0x0).
QuadCommand: resizing index size from [-1] to [2560]
DescriptorSetCache miss: no pool found for pipelineLayout=0x000001cbddda62e8, creating new pool
DescriptorSetCache miss: no pool found for pipelineLayout=0x000001cbe3a1f3b8, creating new pool
DescriptorSetCache miss: no pool found for pipelineLayout=0x000001cbdddb5838, creating new pool

Android device:

2026-01-15 13:11:34.277 24440-24440 Zygote                  pid-24440                            E  process_name_ptr:24440 dev.axmol.dummy
2026-01-15 13:11:34.279  4011-4412  ActivityManagerWrapper  com.miui.home                        E  getRecentTasksForceIncludingTaskIdIfValid: getRecentTasks: size=5
                                                                                                     mainTaskId=14486   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=270532608 cmp=ComponentInfo{dev.axmol.dummy/dev.axmol.app.AppActivity} }
                                                                                                     mainTaskId=14415   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.google.android.youtube/com.google.android.youtube.app.honeycomb.Shell$HomeActivity} }
                                                                                                     mainTaskId=14408   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.android.chrome/com.google.android.apps.chrome.Main} }
                                                                                                     mainTaskId=14464   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.vpn.onesvpn/com.vpn.presentation.features.splash.SplashActivity} }
                                                                                                     mainTaskId=14420   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.google.android.googlequicksearchbox/com.google.android.googlequicksearchbox.SearchActivity} }
---------------------------- PROCESS STARTED (24440) for package dev.axmol.dummy ----------------------------
2026-01-15 13:11:34.340 24440-24440 Compatibil...geReporter dev.axmol.dummy                      D  Compat change id reported: 171979766; UID 10466; state: ENABLED
2026-01-15 13:11:34.340  4011-4412  ActivityManagerWrapper  com.miui.home                        E  getRecentTasksForceIncludingTaskIdIfValid: getRecentTasks: size=5
                                                                                                     mainTaskId=14486   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=270532608 cmp=ComponentInfo{dev.axmol.dummy/dev.axmol.app.AppActivity} }
                                                                                                     mainTaskId=14415   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.google.android.youtube/com.google.android.youtube.app.honeycomb.Shell$HomeActivity} }
                                                                                                     mainTaskId=14408   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.android.chrome/com.google.android.apps.chrome.Main} }
                                                                                                     mainTaskId=14464   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.vpn.onesvpn/com.vpn.presentation.features.splash.SplashActivity} }
                                                                                                     mainTaskId=14420   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.google.android.googlequicksearchbox/com.google.android.googlequicksearchbox.SearchActivity} }
2026-01-15 13:11:34.341 24440-24440 Compatibil...geReporter dev.axmol.dummy                      D  Compat change id reported: 242716250; UID 10466; state: ENABLED
2026-01-15 13:11:34.351 24440-24451 AppScoutStateMachine    dev.axmol.dummy                      D  24440-ScoutStateMachinecreated
2026-01-15 13:11:34.356  4011-4412  ActivityManagerWrapper  com.miui.home                        E  getRecentTasksForceIncludingTaskIdIfValid: getRecentTasks: size=5
                                                                                                     mainTaskId=14486   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=270532608 cmp=ComponentInfo{dev.axmol.dummy/dev.axmol.app.AppActivity} }
                                                                                                     mainTaskId=14415   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.google.android.youtube/com.google.android.youtube.app.honeycomb.Shell$HomeActivity} }
                                                                                                     mainTaskId=14408   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.android.chrome/com.google.android.apps.chrome.Main} }
                                                                                                     mainTaskId=14464   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.vpn.onesvpn/com.vpn.presentation.features.splash.SplashActivity} }
                                                                                                     mainTaskId=14420   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.google.android.googlequicksearchbox/com.google.android.googlequicksearchbox.SearchActivity} }
2026-01-15 13:11:34.420 24440-24440 nativeloader            dev.axmol.dummy                      D  Configuring clns-4 for other apk /data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/base.apk. target_sdk_version=36, uses_libraries=, library_path=/data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/lib/arm64:/data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/dev.axmol.dummy
2026-01-15 13:11:34.428 24440-24440 nativeloader            dev.axmol.dummy                      D  Load libframework-connectivity-jni.so using APEX ns com_android_tethering for caller /apex/com.android.tethering/javalib/framework-connectivity.jar: ok
2026-01-15 13:11:34.429 24440-24440 Perf                    dev.axmol.dummy                      I  Connecting to perf service.
2026-01-15 13:11:34.433 24440-24440 GraphicsEnvironment     dev.axmol.dummy                      V  Currently set values for:
2026-01-15 13:11:34.433 24440-24440 GraphicsEnvironment     dev.axmol.dummy                      V    angle_gl_driver_selection_pkgs=[]
2026-01-15 13:11:34.433 24440-24440 GraphicsEnvironment     dev.axmol.dummy                      V    angle_gl_driver_selection_values=[]
2026-01-15 13:11:34.434 24440-24440 GraphicsEnvironment     dev.axmol.dummy                      V  ANGLE GameManagerService for dev.axmol.dummy: false
2026-01-15 13:11:34.434 24440-24440 GraphicsEnvironment     dev.axmol.dummy                      V  dev.axmol.dummy is not listed in per-application setting
2026-01-15 13:11:34.434 24440-24440 GraphicsEnvironment     dev.axmol.dummy                      V  App is not on the allowlist for updatable production driver.
2026-01-15 13:11:34.436 24440-24440 ForceDarkHelperStubImpl dev.axmol.dummy                      I  initialize for dev.axmol.dummy , ForceDarkOrigin
2026-01-15 13:11:34.438 24440-24440 nativeloader            dev.axmol.dummy                      D  Load libforcedarkimpl.so using system ns (caller=/system_ext/framework/miui-framework.jar): ok
2026-01-15 13:11:34.438 24440-24440 OpenGLRenderer          dev.axmol.dummy                      D  JNI_OnLoad success
2026-01-15 13:11:34.438 24440-24440 MiuiForceDarkConfig     dev.axmol.dummy                      I  setConfig density:2.750000, mainRule:0, secondaryRule:0, tertiaryRule:0
2026-01-15 13:11:34.450 24440-24440 libc                    dev.axmol.dummy                      W  Access denied finding property "vendor.boostfwk.frameprefetcher"
2026-01-15 13:11:34.457 24440-24440 FileUtils               dev.axmol.dummy                      E  err open mi_exception_log errno=2
2026-01-15 13:11:34.457 24440-24440 FileUtils               dev.axmol.dummy                      E  err write to mi_exception_log
2026-01-15 13:11:34.467 24440-24464 libc                    dev.axmol.dummy                      W  Access denied finding property "vendor.migl.debug"
2026-01-15 13:11:34.467 24440-24464 libMiGL                 dev.axmol.dummy                      D  SuperResolution SR initSR mBaseSRWidthSize: 0, mBaseSRHeightSize: 0, mTargetSRWidthSize: 0, mTargetSRHeightSize: 0
2026-01-15 13:11:34.467 24440-24464 libMiGL                 dev.axmol.dummy                      I  EnableDR: 0
2026-01-15 13:11:34.467 24440-24464 libMiGL                 dev.axmol.dummy                      D  mDFIInterval: -1
2026-01-15 13:11:34.468 24440-24464 AdrenoGLES-0            dev.axmol.dummy                      I  QUALCOMM build                   : 4bbe300fc3, Ie69fc1c69b
                                                                                                    Build Date                       : 05/19/25
                                                                                                    OpenGL ES Shader Compiler Version: EV031.35.01.12
                                                                                                    Local Branch                     : 
                                                                                                    Remote Branch                    : refs/tags/AU_LINUX_ANDROID_LA.UM.9.14.11.00.00.571.148
                                                                                                    Remote Branch                    : NONE
                                                                                                    Reconstruct Branch               : NOTHING
2026-01-15 13:11:34.468 24440-24464 AdrenoGLES-0            dev.axmol.dummy                      I  Build Config                     : S P 10.0.7 AArch64
2026-01-15 13:11:34.468 24440-24464 AdrenoGLES-0            dev.axmol.dummy                      I  Driver Path                      : /vendor/lib64/egl/libGLESv2_adreno.so
2026-01-15 13:11:34.470 24440-24440 nativeloader            dev.axmol.dummy                      D  Load /data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/lib/arm64/libc++_shared.so using class loader ns clns-4 (caller=/data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/base.apk!classes5.dex): ok
2026-01-15 13:11:34.471 24440-24464 AdrenoGLES-0            dev.axmol.dummy                      I  PFP: 0x016dc094, ME: 0x00000000
2026-01-15 13:11:34.495 24440-24440 nativeloader            dev.axmol.dummy                      D  Load /data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/lib/arm64/libopenal.so using class loader ns clns-4 (caller=/data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/base.apk!classes5.dex): ok
2026-01-15 13:11:34.500 24440-24440 AppCompatDelegate       dev.axmol.dummy                      D  Checking for metadata for AppLocalesMetadataHolderService : Service not found
2026-01-15 13:11:34.507 24440-24464 OpenGLRenderer          dev.axmol.dummy                      D  MiShaderPrecompile start makeSksl:0, isInPreCacheList:0
2026-01-15 13:11:34.512 24440-24440 AxmolActivity           dev.axmol.dummy                      I  onCreate()
2026-01-15 13:11:34.522 24440-24440 libc                    dev.axmol.dummy                      W  Access denied finding property "ro.vendor.df.effect.conflict"
2026-01-15 13:11:34.517 24440-24440 dev.axmol.dummy         dev.axmol.dummy                      W  type=1400 audit(0.0:11773): avc:  denied  { read } for  name="u:object_r:vendor_displayfeature_prop:s0" dev="tmpfs" ino=14779 scontext=u:r:untrusted_app:s0:c210,c257,c512,c768 tcontext=u:object_r:vendor_displayfeature_prop:s0 tclass=file permissive=0 app=dev.axmol.dummy
2026-01-15 13:11:34.570 24440-24440 nativeloader            dev.axmol.dummy                      D  Load /data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/lib/arm64/libDummy.so using class loader ns clns-4 (caller=/data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/base.apk!classes2.dex): ok
2026-01-15 13:11:34.570 24440-24440 main                    dev.axmol.dummy                      D  axmol_android_app_init
2026-01-15 13:11:34.571 24440-24440 AxmolEngine             dev.axmol.dummy                      D  android version is 34, isSupportLowLatency: true
2026-01-15 13:11:34.575 24440-24440 vulkan                  dev.axmol.dummy                      D  searching for layers in '/data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/lib/arm64'
2026-01-15 13:11:34.576 24440-24440 vulkan                  dev.axmol.dummy                      D  searching for layers in '/data/app/~~UmCtx0kAmeKcqVaoazcrUA==/dev.axmol.dummy-K32Bf7scZuAGM7W6aSaY-Q==/base.apk!/lib/arm64-v8a'
2026-01-15 13:11:34.578 24440-24440 axmol                   dev.axmol.dummy                      I  axmol: vulkan gladVulkanVer: 1.3
2026-01-15 13:11:34.585 24440-24440 AdrenoVK-0              dev.axmol.dummy                      I  ===== BEGIN DUMP OF OVERRIDDEN SETTINGS =====
2026-01-15 13:11:34.585 24440-24440 AdrenoVK-0              dev.axmol.dummy                      I  ===== END DUMP OF OVERRIDDEN SETTINGS =====
2026-01-15 13:11:34.585 24440-24440 AdrenoVK-0              dev.axmol.dummy                      I  QUALCOMM build          : 4bbe300fc3, Ie69fc1c69b
                                                                                                    Build Date              : 05/19/25
                                                                                                    Shader Compiler Version : EV031.35.01.12
                                                                                                    Local Branch            : 
                                                                                                    Remote Branch           : refs/tags/AU_LINUX_ANDROID_LA.UM.9.14.11.00.00.571.148
                                                                                                    Remote Branch           : NONE
                                                                                                    Reconstruct Branch      : NOTHING
2026-01-15 13:11:34.585 24440-24440 AdrenoVK-0              dev.axmol.dummy                      I  Build Config            : S P 10.0.7 AArch64
2026-01-15 13:11:34.585 24440-24440 AdrenoVK-0              dev.axmol.dummy                      I  Driver Path             : /vendor/lib64/hw/vulkan.adreno.so
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I  axmol: available device extensions:
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_incremental_present
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_hdr_metadata
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_shared_presentable_image
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_GOOGLE_display_timing
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_swapchain_maintenance1
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_subgroup_size_control
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_external_memory
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_pipeline_creation_feedback
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_shader_float16_int8
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_get_memory_requirements2
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_spirv_1_4
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_fragment_density_map
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_external_semaphore_fd
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_QCOM_render_pass_store_ops
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_astc_decode_mode
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_external_memory_fd
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_QCOM_render_pass_shader_resolve
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_maintenance1
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_maintenance2
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_maintenance3
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_separate_depth_stencil_layouts
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_image_robustness
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_buffer_device_address
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_extended_dynamic_state
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_queue_family_foreign
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_bind_memory2
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_external_semaphore
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_scalar_block_layout
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_sampler_ycbcr_conversion
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_vertex_attribute_divisor
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_variable_pointers
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_push_descriptor
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_timeline_semaphore
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_device_memory_report
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_imageless_framebuffer
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_device_group
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_relaxed_block_layout
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_external_fence
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_host_query_reset
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_index_type_uint8
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_multiview
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_storage_buffer_storage_class
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_fragment_density_map2
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_shader_subgroup_extended_types
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_private_data
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_pipeline_creation_cache_control
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_separate_stencil_usage
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_IMG_filter_cubic
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_filter_cubic
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_image_format_list
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_sampler_filter_minmax
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_16bit_storage
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_shader_demote_to_helper_invocation
2026-01-15 13:11:34.587 24440-24440 axmol                   dev.axmol.dummy                      I      VK_QCOM_render_pass_transform
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_create_renderpass2
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_blend_operation_advanced
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_depth_stencil_resolve
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_shader_float_controls
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_texture_compression_astc_hdr
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_global_priority
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_shader_draw_parameters
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_vulkan_memory_model
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_descriptor_indexing
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_line_rasterization
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_descriptor_update_template
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_draw_indirect_count
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_driver_properties
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_uniform_buffer_standard_layout
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_ANDROID_external_memory_android_hardware_buffer
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_dedicated_allocation
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_EXT_sample_locations
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_swapchain
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_sampler_mirror_clamp_to_edge
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I      VK_KHR_external_fence_fd
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I  axmol: VK_EXT_extended_dynamic_state extension supported
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I  axmol: Vulkan device=Adreno (TM) 642L, driverVersion=512.530
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      W  axmol: dynamicPrimitiveTopologyUnrestricted not supported or extensions missing, fallback to baked InputAssemblyState
2026-01-15 13:11:34.588 24440-24440 axmol                   dev.axmol.dummy                      I  axmol: samplerAnisotropy supported=1
2026-01-15 13:11:34.601 24440-24440 Compatibil...geReporter dev.axmol.dummy                      D  Compat change id reported: 210923482; UID 10466; state: ENABLED
2026-01-15 13:11:34.616 24440-24440 MiuiMultiWindowUtils    dev.axmol.dummy                      D  freeform resolution args raw data:{  "wide_default":{    "freeform_args": {        "vertical_portrait":{"aspect_ratio":0.626, "original_ratio":0.5643,"original_scale":0.74,"top_margin":0.168,"left_margin":0.484},        "horizontal_portrait":{"aspect_ratio":0.626, "original_ratio":0.5643,"original_scale":0.74,"top_margin":0.1222,"left_margin":0.59745},        "vertical_landscape":{"aspect_ratio":1.6, "original_ratio":1,"original_scale":0.604,"top_margin":0.2596,"left_margin":0.2624},        "horizontal_landscape":{"aspect_ratio":1.6, "original_ratio":1,"original_scale":0.604,"top_margin":0.213,"left_margin":0.3758}    },    "mini_freeform_args":{        "vertical_portrait":{"original_ratio":0.147},        "horizontal_portrait":{"original_ratio":0.147},        "vertical_landscape":{"original_ratio":0.165},        "horizontal_landscape":{"original_ratio":0.165}    }  },  "narrow_default": {    "freeform_args": {        "vertical_portrait":{"aspect_ratio":0.626, "original_ratio":1,"original_scale":0.74,"top_margin":0.0753,"left_margin":-1},        "horizontal_portrait":{"aspect_ratio":0.626, "original_ratio":1,"original_scale":0.5756,"top_margin":-1,"left_margin":0.0753},        "vertical_landscape":{"aspect_ratio":1.6, "original_ratio":0.6847,"original_scale":0.587,"top_margin":0.0753,"left_margin":-1},        "horizontal_landscape":{"aspect_ratio":1.6, "original_ratio":0.6847,"original_scale":0.587,"top_margin":-1,"left_margin":0.0753}    },    "mini_freeform_args":{        "vertical_portrait":{"original_ratio":0.26},        "horizontal_portrait":{"original_ratio":0.26},        "vertical_landscape":{"original_ratio":0.293},        "horizontal_landscape":{"original_ratio":0.293}    }  },  "regular_default": {    "freeform_args": {      "vertical_portrait":{"aspect_ratio":0.625, "original_ratio":1,"original_scale":0.7,"top_margin":0.109,"left_margin":-1},      "horizontal_portrait":{"aspect_ratio":0.6667, "original_ratio":1,"original_scale":0.6102,"top_margin":-1,"left_margin":0.026},      "vertical_landscape":{"aspect_ratio":1.6, "original_ratio":1,"original_scale":0.4244,"top_margin":0.109,"left_margin":-1},      "horizontal_landscape":{"aspect_ratio":1.6, "original_ratio":1,"original_scale":0.4244,"top_margin":-1,"left_margin":0.026}    },    "mini_freeform_args":{      "vertical_portrait":{"original_ratio":0.25},      "horizontal_portrait":{"original_ratio":0.25},      "vertical_landscape":{"original_ratio":0.25},      "horizontal_landscape":{"original_ratio":0.25}    }  },  "pad_default": {    "freeform_args": {      "vertical_portrait":{"aspect_ratio":0.5625, "original_ratio":0.375,"original_scale":0.835,"top_margin":0.049,"left_margin":0.2775},      "horizontal_portrait":{"aspect_ratio":0.5625, "original_ratio":0.375,"original_scale":0.835,"top_margin":-1,"left_margin":0.6525},      "vertical_landscape":{"aspect_ratio":-1, "original_ratio":1,"original_scale":0.468,"top_margin":0.049,"left_margin":-1},      "horizontal_landscape":{"aspect_ratio":-1, "original_ratio":1,"original_scale":0.468,"top_margin":-1,"left_margin":0.4976}    },    "mini_freeform_args":{      "vertical_portrait":{"original_ratio":0.144},      "horizontal_portrait":{"original_ratio":0.144},      "vertical_landscape":{"original_ratio":0.2},      "horizontal_landscape":{"original_ratio":0.2}    }  }}
2026-01-15 13:11:34.621 24440-24440 MiuiMultiWindowUtils    dev.axmol.dummy                      D  initFreeFormResolutionArgs failed, device is lisa
2026-01-15 13:11:34.621 24440-24440 IS_CTS_MODE             dev.axmol.dummy                      D  false
2026-01-15 13:11:34.621 24440-24440 MULTI_WIND...CH_ENABLED dev.axmol.dummy                      D  false
2026-01-15 13:11:34.622 24440-24466 RenderThreadManager     dev.axmol.dummy                      D  Vulkan render thread starting, ID: 1
2026-01-15 13:11:34.627 24440-24440 dev.axmol.dummy         dev.axmol.dummy                      I  hiddenapi: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (runtime_flags=0, domain=platform, api=unsupported) from Landroidx/appcompat/widget/ViewUtils; (domain=app, TargetSdkVersion=36) using reflection: allowed
2026-01-15 13:11:34.633 24440-24440 AxmolActivity           dev.axmol.dummy                      I  onStart()
2026-01-15 13:11:34.637 24440-24440 AxmolActivity           dev.axmol.dummy                      I  onResume()
2026-01-15 13:11:34.647 24440-24440 Compatibil...geReporter dev.axmol.dummy                      D  Compat change id reported: 237531167; UID 10466; state: DISABLED
2026-01-15 13:11:34.649 24440-24440 FramePredict            dev.axmol.dummy                      D  FramePredict init: false
2026-01-15 13:11:34.650 24440-24440 FramePredict            dev.axmol.dummy                      D  init success
2026-01-15 13:11:34.651 24440-24467 FramePredict            dev.axmol.dummy                      E  registerContentObserver fail
2026-01-15 13:11:34.667 24440-24440 FileUtils               dev.axmol.dummy                      E  err write to mi_exception_log
2026-01-15 13:11:34.668 24440-24440 FileUtils               dev.axmol.dummy                      E  err write to mi_exception_log
2026-01-15 13:11:34.674 24440-24440 AxmolSurfaceViewVK      dev.axmol.dummy                      D  onAttachedToWindow reattach =false
2026-01-15 13:11:34.697 24440-24440 libc                    dev.axmol.dummy                      W  Access denied finding property "vendor.display.enable_optimal_refresh_rate"
2026-01-15 13:11:34.693 24440-24440 dev.axmol.dummy         dev.axmol.dummy                      W  type=1400 audit(0.0:11774): avc:  denied  { read } for  name="u:object_r:vendor_display_prop:s0" dev="tmpfs" ino=14778 scontext=u:r:untrusted_app:s0:c210,c257,c512,c768 tcontext=u:object_r:vendor_display_prop:s0 tclass=file permissive=0 app=dev.axmol.dummy
2026-01-15 13:11:34.704 24440-24464 OpenGLRenderer          dev.axmol.dummy                      E  Unable to match the desired swap behavior.
2026-01-15 13:11:34.713 24440-24440 VRI[AppActivity]        dev.axmol.dummy                      D  vri.reportNextDraw android.view.ViewRootImpl.performTraversals:4411 android.view.ViewRootImpl.doTraversal:3040 android.view.ViewRootImpl$TraversalRunnable.run:10429 android.view.Choreographer$CallbackRecord.run:1654 android.view.Choreographer$CallbackRecord.run:1663 
2026-01-15 13:11:34.715 24440-24440 SurfaceView             dev.axmol.dummy                      D  UPDATE null, mIsCastMode = false
2026-01-15 13:11:34.720 24440-24440 libc                    dev.axmol.dummy                      W  Access denied finding property "vendor.display.enable_optimal_refresh_rate"
2026-01-15 13:11:34.717 24440-24440 dev.axmol.dummy         dev.axmol.dummy                      W  type=1400 audit(0.0:11775): avc:  denied  { read } for  name="u:object_r:vendor_display_prop:s0" dev="tmpfs" ino=14778 scontext=u:r:untrusted_app:s0:c210,c257,c512,c768 tcontext=u:object_r:vendor_display_prop:s0 tclass=file permissive=0 app=dev.axmol.dummy
2026-01-15 13:11:34.720 24440-24466 axmol                   dev.axmol.dummy                      I  ANativeWindow_fromSurface success: window=0xb4000073e45dc010, size=(2400 x 1080)
2026-01-15 13:11:34.723 24440-24466 axmol                   dev.axmol.dummy                      I  {
                                                                                                        supports_OES_map_buffer: false
                                                                                                        supports_BGRA8888: true
                                                                                                        axmol.simd: NEON
                                                                                                        supports_PVRTC: false
                                                                                                        axmol.version: 3.0.0-f1b952e
                                                                                                        supports_ATITC: false
                                                                                                        supports_ASTC: true
                                                                                                        supports_S3TC: false
                                                                                                        supports_NPOT: true
                                                                                                        shader: SPIR-V 1.x
                                                                                                        supports_ETC1: false
                                                                                                        supports_vertex_array_object: true
                                                                                                        max_vertex_attributes: 16
                                                                                                        max_samples_allowed: 7
                                                                                                        supports_OES_depth24: true
                                                                                                        axmol.compiled_with_gl_state_cache: true
                                                                                                        axmol.compiled_with_profiler: false
                                                                                                        max_texture_units: 32
                                                                                                        axmol.build_type: DEBUG
                                                                                                        version: Vulkan-1.1.128
                                                                                                        renderer: Adreno (TM) 642L
                                                                                                        max_texture_size: 16384
                                                                                                        supports_ETC2: false
                                                                                                        supports_OES_packed_depth_stencil: true
                                                                                                        vendor: Qualcomm
                                                                                                        supports_discard_framebuffer: false
                                                                                                        window.platform: Android
                                                                                                    }
2026-01-15 13:11:34.732 24440-24466 qdgralloc               dev.axmol.dummy                      E  GetGpuPixelFormat: No map for format: 0x38
2026-01-15 13:11:34.732 24440-24466 AdrenoUtils             dev.axmol.dummy                      E  <validate_memory_layout_input_parmas:1970>: Unknown Format 0
2026-01-15 13:11:34.732 24440-24466 AdrenoUtils             dev.axmol.dummy                      E  <adreno_init_memory_layout:4720>: Memory Layout input parameter validation failed!
2026-01-15 13:11:34.732 24440-24466 qdgralloc               dev.axmol.dummy                      E  GetGpuResourceSizeAndDimensions Graphics metadata init failed
2026-01-15 13:11:34.732 24440-24466 Gralloc4                dev.axmol.dummy                      E  isSupported(1, 1, 56, 1, ...) failed with 1
2026-01-15 13:11:34.734 24440-24466 GraphicBufferAllocator  dev.axmol.dummy                      E  Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 1
2026-01-15 13:11:34.734 24440-24466 AHardwareBuffer         dev.axmol.dummy                      E  GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2026-01-15 13:11:34.734 24440-24466 qdgralloc               dev.axmol.dummy                      E  GetGpuPixelFormat: No map for format: 0x3b
2026-01-15 13:11:34.734 24440-24466 AdrenoUtils             dev.axmol.dummy                      E  <validate_memory_layout_input_parmas:1970>: Unknown Format 0
2026-01-15 13:11:34.734 24440-24466 AdrenoUtils             dev.axmol.dummy                      E  <adreno_init_memory_layout:4720>: Memory Layout input parameter validation failed!
2026-01-15 13:11:34.734 24440-24466 qdgralloc               dev.axmol.dummy                      E  GetGpuResourceSizeAndDimensions Graphics metadata init failed
2026-01-15 13:11:34.734 24440-24466 Gralloc4                dev.axmol.dummy                      E  isSupported(1, 1, 59, 1, ...) failed with 1
2026-01-15 13:11:34.734 24440-24466 GraphicBufferAllocator  dev.axmol.dummy                      E  Failed to allocate (4 x 4) layerCount 1 format 59 usage b00: 1
2026-01-15 13:11:34.734 24440-24466 AHardwareBuffer         dev.axmol.dummy                      E  GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2026-01-15 13:11:34.734 24440-24466 qdgralloc               dev.axmol.dummy                      E  GetGpuPixelFormat: No map for format: 0x38
2026-01-15 13:11:34.734 24440-24466 AdrenoUtils             dev.axmol.dummy                      E  <validate_memory_layout_input_parmas:1970>: Unknown Format 0
2026-01-15 13:11:34.734 24440-24466 AdrenoUtils             dev.axmol.dummy                      E  <adreno_init_memory_layout:4720>: Memory Layout input parameter validation failed!
2026-01-15 13:11:34.734 24440-24466 qdgralloc               dev.axmol.dummy                      E  GetGpuResourceSizeAndDimensions Graphics metadata init failed
2026-01-15 13:11:34.734 24440-24466 Gralloc4                dev.axmol.dummy                      E  isSupported(1, 1, 56, 1, ...) failed with 1
2026-01-15 13:11:34.734 24440-24466 GraphicBufferAllocator  dev.axmol.dummy                      E  Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 1
2026-01-15 13:11:34.734 24440-24466 AHardwareBuffer         dev.axmol.dummy                      E  GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2026-01-15 13:11:34.734 24440-24466 qdgralloc               dev.axmol.dummy                      E  GetGpuPixelFormat: No map for format: 0x3b
2026-01-15 13:11:34.734 24440-24466 AdrenoUtils             dev.axmol.dummy                      E  <validate_memory_layout_input_parmas:1970>: Unknown Format 0
2026-01-15 13:11:34.734 24440-24466 AdrenoUtils             dev.axmol.dummy                      E  <adreno_init_memory_layout:4720>: Memory Layout input parameter validation failed!
2026-01-15 13:11:34.734 24440-24466 qdgralloc               dev.axmol.dummy                      E  GetGpuResourceSizeAndDimensions Graphics metadata init failed
2026-01-15 13:11:34.734 24440-24466 Gralloc4                dev.axmol.dummy                      E  isSupported(1, 1, 59, 1, ...) failed with 1
2026-01-15 13:11:34.735 24440-24466 GraphicBufferAllocator  dev.axmol.dummy                      E  Failed to allocate (4 x 4) layerCount 1 format 59 usage b00: 1
2026-01-15 13:11:34.735 24440-24466 AHardwareBuffer         dev.axmol.dummy                      E  GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2026-01-15 13:11:34.735 24440-24466 axmol                   dev.axmol.dummy                      I  Creating swapchain: 2400x1080, format=37, presentMode=2, preferredImageCount=3
2026-01-15 13:11:34.757 24440-24466 axmol                   dev.axmol.dummy                      I  vkGetSwapchainImagesKHR returned 4 images
2026-01-15 13:11:34.773 24440-24466 axmol                   dev.axmol.dummy                      D  Load program: 20 lineColor_vs, lineColor_fs ok

Android error log:

2026-01-15 14:09:31.895 19131-19180 libc                    dev.axmol.dummy                      I  handling signal: 11
2026-01-15 14:09:31.895 19131-19180 libc                    dev.axmol.dummy                      A  Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0 in tid 19180 (RenderThread 73), pid 19131 (dev.axmol.dummy)
2026-01-15 14:09:31.895 19131-19180 libc                    dev.axmol.dummy                      I  debuggerd_dispatch_pseudothread start. crashing tid: 19180
2026-01-15 14:09:31.911 19131-19180 libc                    dev.axmol.dummy                      I  crash_dump pid: 19273
2026-01-15 14:09:32.354 19131-19244 AudioTrackImpl          dev.axmol.dummy                      D  [audioTrackData][mute] 13s(f:1196 m:13002 s:16 k:0 z:0) : pid 19131 uid 10466 sessionId 1113 sr 48000 ch 2 fmt 1
---------------------------- PROCESS STARTED (19276) for package dev.axmol.dummy ----------------------------
2026-01-15 14:09:33.171 19274-19274 DEBUG                   crash_dump64                         A  Cmdline: dev.axmol.dummy
2026-01-15 14:09:33.171 19274-19274 DEBUG                   crash_dump64                         A  pid: 19131, tid: 19180, name: RenderThread 73  >>> dev.axmol.dummy <<<
2026-01-15 14:09:33.172 19274-19274 DEBUG                   crash_dump64                         A        #02 pc 0000000002835228  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::rhi::vk::RenderContextImpl::prepareDrawing()+1676) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.172 19274-19274 DEBUG                   crash_dump64                         A        #03 pc 0000000002835460  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::rhi::vk::RenderContextImpl::drawElements(ax::rhi::IndexFormat, unsigned long, unsigned long, bool)+40) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.172 19274-19274 DEBUG                   crash_dump64                         A        #04 pc 000000000288ef6c  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::Renderer::drawCustomCommand(ax::RenderCommand*)+436) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.172 19274-19274 DEBUG                   crash_dump64                         A        #05 pc 000000000288eda8  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::Renderer::drawMeshCommand(ax::RenderCommand*)+28) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.172 19274-19274 DEBUG                   crash_dump64                         A        #06 pc 000000000288e560  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::Renderer::processRenderCommand(ax::RenderCommand*)+784) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.172 19274-19274 DEBUG                   crash_dump64                         A        #07 pc 000000000288f42c  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::Renderer::doVisitRenderQueue(std::__ndk1::vector<ax::RenderCommand*, std::__ndk1::allocator<ax::RenderCommand*> > const&)+112) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.173 19274-19274 DEBUG                   crash_dump64                         A        #08 pc 000000000288e1d8  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::Renderer::visitRenderQueue(ax::RenderQueue&)+184) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.173 19274-19274 DEBUG                   crash_dump64                         A        #09 pc 000000000288f57c  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::Renderer::render()+160) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.173 19274-19274 DEBUG                   crash_dump64                         A        #10 pc 00000000026f6aac  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::Scene::render(ax::Renderer*, ax::Mat4 const&, ax::Mat4 const*)+544) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.173 19274-19274 DEBUG                   crash_dump64                         A        #11 pc 000000000274b040  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::RenderView::renderScene(ax::Scene*, ax::Renderer*)+148) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.173 19274-19274 DEBUG                   crash_dump64                         A        #12 pc 00000000028eef50  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::Director::drawScene()+380) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.173 19274-19274 DEBUG                   crash_dump64                         A        #13 pc 00000000028f2904  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (ax::Director::renderFrame()+104) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.173 19274-19274 DEBUG                   crash_dump64                         A        #14 pc 0000000002623e70  /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/lib/arm64/libDummy.so (Java_dev_axmol_lib_AxmolPlayer_nativeRenderFrame+24) (BuildId: 911b51f7571751bb25f1c95f621336a3f51875cd)
2026-01-15 14:09:33.173 19274-19274 DEBUG                   crash_dump64                         A        #20 pc 000000000000f030  [anon:dalvik-classes2.dex extracted in memory from /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/base.apk] (dev.axmol.lib.AxmolPlayer.onDrawFrame+0)
2026-01-15 14:09:33.173 19274-19274 DEBUG                   crash_dump64                         A        #25 pc 000000000000fcac  [anon:dalvik-classes2.dex extracted in memory from /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/base.apk] (dev.axmol.lib.AxmolSurfaceViewVK$RenderThread.guardedRun+0)
2026-01-15 14:09:33.174 19274-19274 DEBUG                   crash_dump64                         A        #30 pc 000000000001040c  [anon:dalvik-classes2.dex extracted in memory from /data/app/~~6Bv1HTpROeYUa8GBTdi4Zg==/dev.axmol.dummy-ULTfSFcKywSE_qpMRdpZ8g==/base.apk] (dev.axmol.lib.AxmolSurfaceViewVK$RenderThread.run+0)
---------------------------- PROCESS ENDED (19131) for package dev.axmol.dummy ----------------------------
---------------------------- PROCESS ENDED (19276) for package dev.axmol.dummy ----------------------------
2026-01-15 14:09:34.551  4011-4412  ActivityManagerWrapper  com.miui.home                        E  getRecentTasksForceIncludingTaskIdIfValid: getRecentTasks: size=5
                                                                                                     mainTaskId=14501   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=270532608 cmp=ComponentInfo{dev.axmol.dummy/dev.axmol.app.AppActivity} }
                                                                                                     mainTaskId=14408   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.android.chrome/com.google.android.apps.chrome.Main} }
                                                                                                     mainTaskId=14464   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.vpn.onesvpn/com.vpn.presentation.features.splash.SplashActivity} }
                                                                                                     mainTaskId=14415   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.google.android.youtube/com.google.android.youtube.app.honeycomb.Shell$HomeActivity} }
                                                                                                     mainTaskId=14420   userId=0   windowMode=1   baseIntent=Intent { act=android.intent.action.MAIN flag=271581184 cmp=ComponentInfo{com.google.android.googlequicksearchbox/com.google.android.googlequicksearchbox.SearchActivity} }

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions