You are not logged in.

#1 2020-05-24 05:57:34

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Switching the primary GPU.

I have two GPUs: Intel Integrated graphics and AMD normal graphics card on my laptop. Arch is using the one I don't need by default (Intel) and I wanna somehow switch to AMD. But using the command DRI_PRIME doesn't change much in the system settings module in KDE. What could I do?

Offline

#2 2020-05-24 08:09:33

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,657

Re: Switching the primary GPU.

https://wiki.archlinux.org/index.php/PR … rimary_GPU switch the nouveau for amdgpu (... and the intel section should probably use Driver "modesetting" instead of intel)

However DRI_PRIME is not supposed to be used for changing the output provider, but enabling single applications you need the added power to use the amd card while you can do normal rendering on the weaker, but power-saving integrated card.  Is that usecase not sufficient?

Offline

#3 2020-05-24 08:53:32

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Do I change it up like this?

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "amdgpu"
    Inactive "intel"
EndSection

Section "Device"
    Identifier  "amdgpu"
    Driver      "amdgpu"
    BusID       "PCI:x:x:x" # Sample: "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "amdgpu"
    Device "amdgpu"
EndSection

Section "Device"
    Identifier  "intel"
    Driver      "modesetting"
    BusID       "PCI:x:x:x"  # Sample: "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "intel"
    Device "modesetting"
EndSection

And then use

xrandr --setprovideroutputsource Intel amdgpu

?

Last edited by MaxSpec (2020-05-24 08:54:14)

Offline

#4 2020-05-24 08:58:56

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,657

Re: Switching the primary GPU.

yeah around that, replace the busids with the correct one (though you might be able to not need to specify them and it working anyway) double-check with xrandr --listproviders that the name really is intel and amdgpu or wheter you have to specify modesetting here as well.

Offline

#5 2020-05-25 12:28:54

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

For some reason, it outputs 2 providers named modesetting.

Providers: number : 2
Provider 0: id: 0x45 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 2 outputs: 4 associated providers: 1 name:modesetting
Provider 1: id: 0xb6 cap: 0x5, Source Output, Source Offload crtcs: 6 outputs: 0 associated providers: 1 name:modesetting

Last edited by MaxSpec (2020-05-25 12:29:49)

Offline

#6 2020-05-25 15:13:40

seth
Member
Registered: 2012-09-03
Posts: 51,017

Re: Switching the primary GPU.

Some reason being that both GPUs are  driven by the modeseting driver. If you don't intend to use xf86-video-amgpu you can use the IDs instead of the names.

Edit: ie. 0x45 and 0xb6, i guess 0x45 is the intel one.

Last edited by seth (2020-05-25 15:15:15)

Offline

#7 2020-05-25 19:58:42

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Hmm.. after isntalling radeon driver, one of them shows as TURKS, aka AMD driver. So, is it more correct?

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "TURKS"
    Inactive "intel"
EndSection

Section "Device"
    Identifier  "nouveau"
    Driver      "TURKS"
    BusID       "PCI:0000:01:00" # Sample: "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "amdgpu"
    Device "TURKS"
EndSection

Section "Device"
    Identifier  "intel"
    Driver      "modesetting"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection

Offline

#8 2020-05-25 20:07:56

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,657

Re: Switching the primary GPU.

No, from a xorg.conf aspect  your previous config was more correct (to be frank I'm fairly certain you don't actually need one..., executing that xrandr command at the appropriate time should be enough) that PCI doesn't make sense though, you will want "PCI:0:1:0" (given that that is correct maybe post your xorg.log).

Offline

#9 2020-05-25 20:22:25

seth
Member
Registered: 2012-09-03
Posts: 51,017

Re: Switching the primary GPU.

It's more like the new config is completely bogus, "TURKS" is not a driver and you mixed drivers and identifiers.

You could substitute every occurrence of "amdgpu" in your original config w/ "radeon" and fix the pci bus ID for a better approach.
But agreeing w/ V1del, you probably won't need a config anyway.

Also please post the output of "lspci" and the updated output of "xrandr --listproviders"

Offline

#10 2020-05-25 20:22:56

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Okay, I've used the previous config.
When I try to execute

xrandr --setprovideroutputsource modesetting amdgpu

it says:

Could not find provider with name Intel

Offline

#11 2020-05-25 20:25:47

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Oh, didn't see that last one message from seth.
lsci:

01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Whistler [Radeon HD 6730M/6770M/7690M XT]
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)

xrandr --listproviders:

Provider 0: id: 0x45 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 2 outputs: 4 associated providers: 1 name:modesetting
Provider 1: id: 0xb6 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 6 outputs: 0 associated providers: 1 name:TURKS @ pci:0000:01:00.0

Offline

#12 2020-05-25 20:31:08

seth
Member
Registered: 2012-09-03
Posts: 51,017

Re: Switching the primary GPU.

This call

xrandr --setprovideroutputsource modesetting amdgpu

stands noway near a chance to generate this error

Could not find provider with name Intel
xrandr --setprovideroutputsource 0x45 0xb6 # this uses the IDs
xrandr --setprovideroutputsource modesetting 'TURKS @ pci:0000:01:00.0' # I'm not sure whether and how the @ pci… stuff is processed, try as well
xrandr --setprovideroutputsource modesetting TURKS

Offline

#13 2020-05-25 20:34:33

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

First and second command:

X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  35 (RRSetProviderOutputSource)
  Value in failed request:  0xb6
  Serial number of failed request:  16
  Current serial number in output stream:  17

Third command:

Could not find provider with name TURKS

Offline

#14 2020-05-26 05:55:54

seth
Member
Registered: 2012-09-03
Posts: 51,017

Re: Switching the primary GPU.

So the output name is actually "TURKS @ pci:0000:01:00.0", but despite the required capabilities are announced, the redirection fails (apparently on the radeon side)

Try the modesetting driver, ie. rewind the setup to comment #5 (but keep the proper pci IDs) then post "xrandr --listproviders" and your present xorg.conf and try to redirect the output using the IDs

xrandr --setprovideroutputsource 0x45 0xb6 # this uses the IDs

Offline

#15 2020-05-26 07:52:51

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

I removed xf86-video-ati. There's nothing in /etc/X11/xorg.conf.
Doing the command above shows the same error as I've posted in #13.

Offline

#16 2020-05-26 09:45:52

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

After messing around with settings and doing

xrandr --setprovideroffloadsink 1 0

it set AMD as primary, then I tried to check using DRI_PRIME 0/1 vblank_mode=0 glxgears and it seems to work.
https://cdn.discordapp.com/attachments/ … 10/ada.png

Last edited by MaxSpec (2020-05-26 09:59:24)

Offline

#17 2020-05-26 09:54:36

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,657

Re: Switching the primary GPU.

Please convert that to a thumbnail or a link

I'd expect that one to show radeon as the current active GL provider if it did end up working, or did you run that with DRI_PRIME=1?

Offline

#18 2020-05-26 10:18:32

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

I've restarted my PC, and well.. AMD is still primary but it seems like the PC uses Intel instead. I guess I'll have to somehow set up a script for xrandr --setprovideroffloadsink 1 0 to always execute on launch. Or we need to find a different way to set it up without having this in autolaunch.
Edit: xrandr --setprovideroffloadsink 'TURKS @ pci:0000:01:00.0' Intel seems to work a bit better.

Last edited by MaxSpec (2020-05-26 10:25:18)

Offline

#19 2020-05-26 10:38:43

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

I've set ~/.xinitrc and ~/.xprofile, I think that should execute everything on launch. Only thing that's left is just somehow make it work properly since it lags when I'm trying to join a test bot server in CS:GO (May be unrelated).

Last edited by MaxSpec (2020-05-26 10:49:22)

Offline

#20 2020-05-26 11:33:07

seth
Member
Registered: 2012-09-03
Posts: 51,017

Re: Switching the primary GPU.

Please post your xorg log and the outputs of "xrandr --listproviders" and "glxinfo"

Offline

#21 2020-05-26 12:14:33

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

xrandr --listproviders:

Provider 0: id: 0x47 cap: 0xb, Source Output, Sink Output, Sink Offload crtcs: 3 outputs: 5 associated providers: 1 name:Intel
Provider 1: id: 0x8f cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 6 outputs: 0 associated providers: 1 name:TURKS @ pci:0000:01:00.0

(I'm not sure why you need that much information but) glxinfo:

name of display: :0
display: :0  screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.4
server glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_no_error, 
    GLX_ARB_create_context_profile, GLX_ARB_create_context_robustness, 
    GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, GLX_ARB_multisample, 
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 
    GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, 
    GLX_EXT_import_context, GLX_EXT_libglvnd, GLX_EXT_no_config_context, 
    GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, 
    GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, GLX_OML_swap_method, 
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, 
    GLX_SGIX_visual_select_group, GLX_SGI_make_current_read, 
    GLX_SGI_swap_control
client glx vendor string: Mesa Project and SGI
client glx version string: 1.4
client glx extensions:
    GLX_ARB_context_flush_control, GLX_ARB_create_context, 
    GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, 
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, 
    GLX_ARB_framebuffer_sRGB, GLX_ARB_get_proc_address, GLX_ARB_multisample, 
    GLX_EXT_buffer_age, GLX_EXT_create_context_es2_profile, 
    GLX_EXT_create_context_es_profile, GLX_EXT_fbconfig_packed_float, 
    GLX_EXT_framebuffer_sRGB, GLX_EXT_import_context, 
    GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, 
    GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, 
    GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer, 
    GLX_MESA_swap_control, GLX_OML_swap_method, GLX_OML_sync_control, 
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, 
    GLX_SGIX_visual_select_group, GLX_SGI_make_current_read, 
    GLX_SGI_swap_control, GLX_SGI_video_sync
GLX version: 1.4
GLX extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_no_error, 
    GLX_ARB_create_context_profile, GLX_ARB_create_context_robustness, 
    GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, 
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age, 
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 
    GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, 
    GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, 
    GLX_EXT_visual_rating, GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, 
    GLX_MESA_query_renderer, GLX_MESA_swap_control, GLX_OML_swap_method, 
    GLX_OML_sync_control, GLX_SGIS_multisample, GLX_SGIX_fbconfig, 
    GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, GLX_SGI_make_current_read, 
    GLX_SGI_swap_control, GLX_SGI_video_sync
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: Intel Open Source Technology Center (0x8086)
    Device: Mesa DRI Intel(R) HD Graphics 3000 (SNB GT2) (0x116)
    Version: 20.0.7
    Accelerated: yes
    Video memory: 1536MB
    Unified memory: yes
    Preferred profile: core (0x1)
    Max core profile version: 3.3
    Max compat profile version: 3.0
    Max GLES1 profile version: 1.1
    Max GLES[23] profile version: 3.0
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) HD Graphics 3000 (SNB GT2)
OpenGL core profile version string: 3.3 (Core Profile) Mesa 20.0.7
OpenGL core profile shading language version string: 3.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
    GL_3DFX_texture_compression_FXT1, GL_AMD_draw_buffers_blend, 
    GL_AMD_seamless_cubemap_per_texture, GL_AMD_shader_trinary_minmax, 
    GL_AMD_texture_texture4, GL_AMD_vertex_shader_layer, 
    GL_AMD_vertex_shader_viewport_index, GL_ANGLE_texture_compression_dxt3, 
    GL_ANGLE_texture_compression_dxt5, GL_APPLE_object_purgeable, 
    GL_ARB_ES2_compatibility, GL_ARB_ES3_compatibility, 
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended, 
    GL_ARB_buffer_storage, GL_ARB_clear_buffer_object, GL_ARB_clear_texture, 
    GL_ARB_clip_control, GL_ARB_compressed_texture_pixel_storage, 
    GL_ARB_conditional_render_inverted, GL_ARB_copy_buffer, GL_ARB_copy_image, 
    GL_ARB_cull_distance, GL_ARB_debug_output, GL_ARB_depth_buffer_float, 
    GL_ARB_depth_clamp, GL_ARB_direct_state_access, GL_ARB_draw_buffers, 
    GL_ARB_draw_buffers_blend, GL_ARB_draw_elements_base_vertex, 
    GL_ARB_draw_instanced, GL_ARB_enhanced_layouts, 
    GL_ARB_explicit_attrib_location, GL_ARB_explicit_uniform_location, 
    GL_ARB_fragment_coord_conventions, GL_ARB_fragment_layer_viewport, 
    GL_ARB_fragment_shader, GL_ARB_framebuffer_object, 
    GL_ARB_framebuffer_sRGB, GL_ARB_get_program_binary, 
    GL_ARB_get_texture_sub_image, GL_ARB_half_float_pixel, 
    GL_ARB_half_float_vertex, GL_ARB_instanced_arrays, 
    GL_ARB_internalformat_query, GL_ARB_internalformat_query2, 
    GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment, 
    GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_occlusion_query2, 
    GL_ARB_parallel_shader_compile, GL_ARB_pipeline_statistics_query, 
    GL_ARB_pixel_buffer_object, GL_ARB_point_sprite, 
    GL_ARB_polygon_offset_clamp, GL_ARB_program_interface_query, 
    GL_ARB_provoking_vertex, GL_ARB_robustness, GL_ARB_sample_shading, 
    GL_ARB_sampler_objects, GL_ARB_seamless_cube_map, 
    GL_ARB_seamless_cubemap_per_texture, GL_ARB_separate_shader_objects, 
    GL_ARB_shader_bit_encoding, GL_ARB_shader_draw_parameters, 
    GL_ARB_shader_group_vote, GL_ARB_shader_objects, GL_ARB_shader_subroutine, 
    GL_ARB_shader_texture_lod, GL_ARB_shader_viewport_layer_array, 
    GL_ARB_shading_language_420pack, GL_ARB_shading_language_include, 
    GL_ARB_shading_language_packing, GL_ARB_sync, GL_ARB_texture_barrier, 
    GL_ARB_texture_buffer_object, GL_ARB_texture_buffer_object_rgb32, 
    GL_ARB_texture_buffer_range, GL_ARB_texture_compression_rgtc, 
    GL_ARB_texture_cube_map_array, GL_ARB_texture_filter_anisotropic, 
    GL_ARB_texture_float, GL_ARB_texture_gather, 
    GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_multisample, 
    GL_ARB_texture_non_power_of_two, GL_ARB_texture_query_levels, 
    GL_ARB_texture_query_lod, GL_ARB_texture_rectangle, GL_ARB_texture_rg, 
    GL_ARB_texture_rgb10_a2ui, GL_ARB_texture_storage, 
    GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle, 
    GL_ARB_timer_query, GL_ARB_transform_feedback2, 
    GL_ARB_transform_feedback_overflow_query, GL_ARB_uniform_buffer_object, 
    GL_ARB_vertex_array_bgra, GL_ARB_vertex_array_object, 
    GL_ARB_vertex_attrib_binding, GL_ARB_vertex_buffer_object, 
    GL_ARB_vertex_shader, GL_ARB_vertex_type_10f_11f_11f_rev, 
    GL_ARB_vertex_type_2_10_10_10_rev, GL_ARB_viewport_array, 
    GL_ATI_blend_equation_separate, GL_ATI_texture_float, 
    GL_EXT_EGL_image_storage, GL_EXT_EGL_sync, GL_EXT_abgr, 
    GL_EXT_blend_equation_separate, GL_EXT_demote_to_helper_invocation, 
    GL_EXT_draw_buffers2, GL_EXT_draw_instanced, GL_EXT_framebuffer_blit, 
    GL_EXT_framebuffer_multisample, GL_EXT_framebuffer_multisample_blit_scaled, 
    GL_EXT_framebuffer_object, GL_EXT_framebuffer_sRGB, 
    GL_EXT_packed_depth_stencil, GL_EXT_packed_float, 
    GL_EXT_pixel_buffer_object, GL_EXT_polygon_offset_clamp, 
    GL_EXT_provoking_vertex, GL_EXT_shader_framebuffer_fetch_non_coherent, 
    GL_EXT_shader_integer_mix, GL_EXT_texture_array, 
    GL_EXT_texture_compression_dxt1, GL_EXT_texture_compression_rgtc, 
    GL_EXT_texture_compression_s3tc, GL_EXT_texture_filter_anisotropic, 
    GL_EXT_texture_integer, GL_EXT_texture_sRGB, GL_EXT_texture_sRGB_R8, 
    GL_EXT_texture_sRGB_decode, GL_EXT_texture_shadow_lod, 
    GL_EXT_texture_shared_exponent, GL_EXT_texture_snorm, 
    GL_EXT_texture_swizzle, GL_EXT_timer_query, GL_EXT_transform_feedback, 
    GL_EXT_vertex_array_bgra, GL_IBM_multimode_draw_arrays, 
    GL_INTEL_performance_query, GL_KHR_blend_equation_advanced, 
    GL_KHR_context_flush_control, GL_KHR_debug, GL_KHR_no_error, 
    GL_KHR_parallel_shader_compile, GL_KHR_robustness, GL_MESA_pack_invert, 
    GL_MESA_shader_integer_functions, GL_MESA_texture_signed_rgba, 
    GL_NV_conditional_render, GL_NV_depth_clamp, GL_NV_packed_depth_stencil, 
    GL_NV_texture_barrier, GL_OES_EGL_image, GL_S3_s3tc

OpenGL version string: 3.0 Mesa 20.0.7
OpenGL shading language version string: 1.30
OpenGL context flags: (none)
OpenGL extensions:
    GL_3DFX_texture_compression_FXT1, GL_AMD_draw_buffers_blend, 
    GL_AMD_seamless_cubemap_per_texture, GL_AMD_shader_trinary_minmax, 
    GL_AMD_texture_texture4, GL_ANGLE_texture_compression_dxt3, 
    GL_ANGLE_texture_compression_dxt5, GL_APPLE_object_purgeable, 
    GL_APPLE_packed_pixels, GL_ARB_ES2_compatibility, 
    GL_ARB_ES3_compatibility, GL_ARB_arrays_of_arrays, 
    GL_ARB_blend_func_extended, GL_ARB_buffer_storage, 
    GL_ARB_clear_buffer_object, GL_ARB_clear_texture, GL_ARB_clip_control, 
    GL_ARB_color_buffer_float, GL_ARB_compressed_texture_pixel_storage, 
    GL_ARB_conditional_render_inverted, GL_ARB_copy_buffer, GL_ARB_copy_image, 
    GL_ARB_cull_distance, GL_ARB_debug_output, GL_ARB_depth_buffer_float, 
    GL_ARB_depth_clamp, GL_ARB_depth_texture, GL_ARB_draw_buffers, 
    GL_ARB_draw_buffers_blend, GL_ARB_draw_elements_base_vertex, 
    GL_ARB_draw_instanced, GL_ARB_explicit_attrib_location, 
    GL_ARB_explicit_uniform_location, GL_ARB_fragment_coord_conventions, 
    GL_ARB_fragment_layer_viewport, GL_ARB_fragment_program, 
    GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader, 
    GL_ARB_framebuffer_object, GL_ARB_framebuffer_sRGB, 
    GL_ARB_get_program_binary, GL_ARB_get_texture_sub_image, 
    GL_ARB_half_float_pixel, GL_ARB_half_float_vertex, 
    GL_ARB_instanced_arrays, GL_ARB_internalformat_query, 
    GL_ARB_internalformat_query2, GL_ARB_invalidate_subdata, 
    GL_ARB_map_buffer_alignment, GL_ARB_map_buffer_range, GL_ARB_multi_bind, 
    GL_ARB_multisample, GL_ARB_multitexture, GL_ARB_occlusion_query, 
    GL_ARB_occlusion_query2, GL_ARB_parallel_shader_compile, 
    GL_ARB_pipeline_statistics_query, GL_ARB_pixel_buffer_object, 
    GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_polygon_offset_clamp, 
    GL_ARB_program_interface_query, GL_ARB_provoking_vertex, 
    GL_ARB_robustness, GL_ARB_sample_shading, GL_ARB_sampler_objects, 
    GL_ARB_seamless_cube_map, GL_ARB_seamless_cubemap_per_texture, 
    GL_ARB_separate_shader_objects, GL_ARB_shader_bit_encoding, 
    GL_ARB_shader_draw_parameters, GL_ARB_shader_group_vote, 
    GL_ARB_shader_objects, GL_ARB_shader_texture_lod, 
    GL_ARB_shading_language_100, GL_ARB_shading_language_420pack, 
    GL_ARB_shading_language_include, GL_ARB_shading_language_packing, 
    GL_ARB_shadow, GL_ARB_sync, GL_ARB_texture_barrier, 
    GL_ARB_texture_border_clamp, GL_ARB_texture_compression, 
    GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map, 
    GL_ARB_texture_cube_map_array, GL_ARB_texture_env_add, 
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, 
    GL_ARB_texture_env_dot3, GL_ARB_texture_filter_anisotropic, 
    GL_ARB_texture_float, GL_ARB_texture_gather, 
    GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_mirrored_repeat, 
    GL_ARB_texture_multisample, GL_ARB_texture_non_power_of_two, 
    GL_ARB_texture_query_levels, GL_ARB_texture_query_lod, 
    GL_ARB_texture_rectangle, GL_ARB_texture_rg, GL_ARB_texture_rgb10_a2ui, 
    GL_ARB_texture_storage, GL_ARB_texture_storage_multisample, 
    GL_ARB_texture_swizzle, GL_ARB_timer_query, GL_ARB_transform_feedback2, 
    GL_ARB_transform_feedback_overflow_query, GL_ARB_transpose_matrix, 
    GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_bgra, 
    GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_binding, 
    GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader, 
    GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev, 
    GL_ARB_window_pos, GL_ATI_blend_equation_separate, GL_ATI_draw_buffers, 
    GL_ATI_separate_stencil, GL_ATI_texture_env_combine3, 
    GL_ATI_texture_float, GL_EXT_EGL_image_storage, GL_EXT_EGL_sync, 
    GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, 
    GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate, 
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_compiled_vertex_array, 
    GL_EXT_copy_texture, GL_EXT_demote_to_helper_invocation, 
    GL_EXT_direct_state_access, GL_EXT_draw_buffers2, GL_EXT_draw_instanced, 
    GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_framebuffer_blit, 
    GL_EXT_framebuffer_multisample, GL_EXT_framebuffer_multisample_blit_scaled, 
    GL_EXT_framebuffer_object, GL_EXT_framebuffer_sRGB, 
    GL_EXT_gpu_program_parameters, GL_EXT_gpu_shader4, 
    GL_EXT_multi_draw_arrays, GL_EXT_packed_depth_stencil, 
    GL_EXT_packed_float, GL_EXT_packed_pixels, GL_EXT_pixel_buffer_object, 
    GL_EXT_point_parameters, GL_EXT_polygon_offset_clamp, 
    GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color, 
    GL_EXT_separate_specular_color, 
    GL_EXT_shader_framebuffer_fetch_non_coherent, GL_EXT_shader_integer_mix, 
    GL_EXT_shadow_funcs, GL_EXT_stencil_two_side, GL_EXT_stencil_wrap, 
    GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D, 
    GL_EXT_texture_array, GL_EXT_texture_compression_dxt1, 
    GL_EXT_texture_compression_rgtc, GL_EXT_texture_compression_s3tc, 
    GL_EXT_texture_cube_map, GL_EXT_texture_edge_clamp, 
    GL_EXT_texture_env_add, GL_EXT_texture_env_combine, 
    GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic, 
    GL_EXT_texture_integer, GL_EXT_texture_lod_bias, GL_EXT_texture_object, 
    GL_EXT_texture_rectangle, GL_EXT_texture_sRGB, GL_EXT_texture_sRGB_R8, 
    GL_EXT_texture_sRGB_decode, GL_EXT_texture_shadow_lod, 
    GL_EXT_texture_shared_exponent, GL_EXT_texture_snorm, 
    GL_EXT_texture_swizzle, GL_EXT_timer_query, GL_EXT_transform_feedback, 
    GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, 
    GL_IBM_multimode_draw_arrays, GL_IBM_rasterpos_clip, 
    GL_IBM_texture_mirrored_repeat, GL_INGR_blend_func_separate, 
    GL_INTEL_performance_query, GL_KHR_blend_equation_advanced, 
    GL_KHR_context_flush_control, GL_KHR_debug, GL_KHR_no_error, 
    GL_KHR_parallel_shader_compile, GL_KHR_robustness, GL_MESA_pack_invert, 
    GL_MESA_shader_integer_functions, GL_MESA_texture_signed_rgba, 
    GL_MESA_window_pos, GL_NV_blend_square, GL_NV_conditional_render, 
    GL_NV_depth_clamp, GL_NV_fog_distance, GL_NV_light_max_exponent, 
    GL_NV_packed_depth_stencil, GL_NV_primitive_restart, 
    GL_NV_texgen_reflection, GL_NV_texture_barrier, 
    GL_NV_texture_env_combine4, GL_NV_texture_rectangle, GL_OES_EGL_image, 
    GL_OES_read_format, GL_S3_s3tc, GL_SGIS_generate_mipmap, 
    GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp, 
    GL_SGIS_texture_lod, GL_SUN_multi_draw_arrays

OpenGL ES profile version string: OpenGL ES 3.0 Mesa 20.0.7
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.00
OpenGL ES profile extensions:
    GL_ANGLE_texture_compression_dxt3, GL_ANGLE_texture_compression_dxt5, 
    GL_APPLE_texture_max_level, GL_EXT_EGL_image_storage, 
    GL_EXT_base_instance, GL_EXT_blend_func_extended, GL_EXT_blend_minmax, 
    GL_EXT_clip_control, GL_EXT_clip_cull_distance, GL_EXT_color_buffer_float, 
    GL_EXT_compressed_ETC1_RGB8_sub_texture, 
    GL_EXT_demote_to_helper_invocation, GL_EXT_depth_clamp, 
    GL_EXT_discard_framebuffer, GL_EXT_disjoint_timer_query, 
    GL_EXT_draw_buffers, GL_EXT_draw_buffers_indexed, 
    GL_EXT_draw_elements_base_vertex, GL_EXT_float_blend, GL_EXT_frag_depth, 
    GL_EXT_map_buffer_range, GL_EXT_multi_draw_arrays, 
    GL_EXT_occlusion_query_boolean, GL_EXT_polygon_offset_clamp, 
    GL_EXT_read_format_bgra, GL_EXT_robustness, GL_EXT_sRGB_write_control, 
    GL_EXT_separate_shader_objects, 
    GL_EXT_shader_framebuffer_fetch_non_coherent, GL_EXT_shader_integer_mix, 
    GL_EXT_texture_border_clamp, GL_EXT_texture_compression_dxt1, 
    GL_EXT_texture_compression_rgtc, GL_EXT_texture_compression_s3tc, 
    GL_EXT_texture_compression_s3tc_srgb, GL_EXT_texture_filter_anisotropic, 
    GL_EXT_texture_format_BGRA8888, GL_EXT_texture_query_lod, 
    GL_EXT_texture_rg, GL_EXT_texture_sRGB_R8, GL_EXT_texture_sRGB_decode, 
    GL_EXT_texture_shadow_lod, GL_EXT_texture_type_2_10_10_10_REV, 
    GL_EXT_unpack_subimage, GL_INTEL_performance_query, 
    GL_KHR_blend_equation_advanced, GL_KHR_context_flush_control, 
    GL_KHR_debug, GL_KHR_no_error, GL_KHR_parallel_shader_compile, 
    GL_KHR_robustness, GL_MESA_framebuffer_flip_y, 
    GL_MESA_shader_integer_functions, GL_NV_conditional_render, 
    GL_NV_draw_buffers, GL_NV_fbo_color_attachments, GL_NV_read_buffer, 
    GL_NV_read_depth, GL_NV_read_depth_stencil, GL_NV_read_stencil, 
    GL_OES_EGL_image, GL_OES_EGL_image_external, 
    GL_OES_EGL_image_external_essl3, GL_OES_EGL_sync, 
    GL_OES_compressed_ETC1_RGB8_texture, GL_OES_depth24, GL_OES_depth_texture, 
    GL_OES_depth_texture_cube_map, GL_OES_draw_buffers_indexed, 
    GL_OES_draw_elements_base_vertex, GL_OES_element_index_uint, 
    GL_OES_fbo_render_mipmap, GL_OES_get_program_binary, GL_OES_mapbuffer, 
    GL_OES_packed_depth_stencil, GL_OES_required_internalformat, 
    GL_OES_rgb8_rgba8, GL_OES_sample_shading, GL_OES_sample_variables, 
    GL_OES_shader_multisample_interpolation, GL_OES_standard_derivatives, 
    GL_OES_stencil8, GL_OES_surfaceless_context, GL_OES_texture_3D, 
    GL_OES_texture_border_clamp, GL_OES_texture_float, 
    GL_OES_texture_float_linear, GL_OES_texture_half_float, 
    GL_OES_texture_half_float_linear, GL_OES_texture_npot, 
    GL_OES_vertex_array_object, GL_OES_vertex_half_float

74 GLX Visuals
    visual  x   bf lv rg d st  colorbuffer  sr ax dp st accumbuffer  ms  cav
  id dep cl sp  sz l  ci b ro  r  g  b  a F gb bf th cl  r  g  b  a ns b eat
----------------------------------------------------------------------------
0x020 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x021 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x0ee 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x0ef 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x0f0 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x0f1 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x0f2 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x0f3 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0f4 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0f5 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x0f6 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x0f7 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x0f8 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x0f9 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x0fa 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x0fb 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x0fc 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x0fd 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x0fe 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x0ff 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x100 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16  0  0 0 Slow
0x101 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x102 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x103 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x104 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16  0  0 0 Slow
0x105 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x106 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x107 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x108 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x109 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x10a 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x10b 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x10c 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x10d 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x10e 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x10f 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x110 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x111 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x112 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x113 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x114 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x115 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x116 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x117 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x118 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x119 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x11a 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x11b 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x11c 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x11d 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x11e 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x11f 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16  0  0 0 Slow
0x120 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x121 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x122 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x123 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16  0  0 0 Slow
0x124 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x125 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x126 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x127 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x128 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x129 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x12a 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x12b 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x093 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x12c 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x12d 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x12e 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x12f 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x130 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x131 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x132 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x133 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x134 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None

90 GLXFBConfigs:
    visual  x   bf lv rg d st  colorbuffer  sr ax dp st accumbuffer  ms  cav
  id dep cl sp  sz l  ci b ro  r  g  b  a F gb bf th cl  r  g  b  a ns b eat
----------------------------------------------------------------------------
0x094  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  0 0 None
0x095  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0  0  0  0  0  0  0  0 0 None
0x096  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x097  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x098 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x099 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x09a 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x09b 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x09c 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x09d 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x09e 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x09f 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0a0 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x0a1 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x0a2 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x0a3 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x0a4 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x0a5 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x0a6 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x0a7 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x0a8  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0a9  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8 16 16 16  0  0 0 Slow
0x0aa 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x0ab 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x0ac 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0ad 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16  0  0 0 Slow
0x0ae 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x0af 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x0b0 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x0b1 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16  0  0 0 Slow
0x0b2  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  4 1 None
0x0b3  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  4 1 None
0x0b4 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x0b5 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x0b6 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x0b7 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x0b8 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x0b9 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x0ba 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x0bb 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x0bc  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  0 0 None
0x0bd  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0  0  0  0  0  0  0  0 0 None
0x0be  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0bf  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0c0 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x0c1 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x0c2 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x0c3 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x0c4 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x0c5 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x0c6 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0c7 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0c8 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x0c9 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x0ca 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x0cb 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x0cc 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x0cd 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x0ce 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x0cf 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x0d0  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0d1  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8 16 16 16  0  0 0 Slow
0x0d2 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x0d3 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x0d4 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x0d5 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16  0  0 0 Slow
0x0d6 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x0d7 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x0d8 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x0d9 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16  0  0 0 Slow
0x0da  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  4 1 None
0x0db  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  4 1 None
0x0dc 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x0dd 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x0de 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x0df 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x0e0 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x0e1 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x0e2 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x0e3 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x0e4 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x0e5 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x0e6 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x0e7 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x0e8 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x0e9 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x0ea 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x0eb 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x0ec 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x0ed 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None

About xorg log, I'm guessing it's /var/log/Xorg.0.log. xorg log:

[    22.620] (--) Log file renamed from "/var/log/Xorg.pid-483.log" to "/var/log/Xorg.0.log"
[    22.646] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[    22.646] Build Operating System: Linux Arch Linux
[    22.646] Current Operating System: Linux DanSpec 5.6.14-arch1-1 #1 SMP PREEMPT Wed, 20 May 2020 20:43:19 +0000 x86_64
[    22.646] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b155a021-be7a-4ff2-aa70-37184f079812 rw loglevel=3 quiet
[    22.646] Build Date: 05 May 2020  05:08:17AM
[    22.646]  
[    22.646] Current version of pixman: 0.40.0
[    22.646] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    22.646] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    22.646] (==) Log file: "/var/log/Xorg.0.log", Time: Tue May 26 18:11:38 2020
[    22.720] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    22.755] (==) No Layout section.  Using the first Screen section.
[    22.755] (==) No screen section available. Using defaults.
[    22.755] (**) |-->Screen "Default Screen Section" (0)
[    22.755] (**) |   |-->Monitor "<default monitor>"
[    22.756] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    22.756] (==) Automatically adding devices
[    22.756] (==) Automatically enabling devices
[    22.756] (==) Automatically adding GPU devices
[    22.757] (==) Automatically binding GPU devices
[    22.757] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    22.771] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    22.771] 	Entry deleted from font path.
[    22.806] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    22.806] 	Entry deleted from font path.
[    22.806] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    22.806] 	Entry deleted from font path.
[    22.806] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[    22.806] 	Entry deleted from font path.
[    22.806] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[    22.806] 	Entry deleted from font path.
[    22.807] (==) FontPath set to:
	/usr/share/fonts/TTF
[    22.807] (==) ModulePath set to "/usr/lib/xorg/modules"
[    22.807] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    22.807] (II) Module ABI versions:
[    22.807] 	X.Org ANSI C Emulation: 0.4
[    22.807] 	X.Org Video Driver: 24.1
[    22.807] 	X.Org XInput driver : 24.1
[    22.807] 	X.Org Server Extension : 10.0
[    22.809] (++) using VT number 1

[    22.809] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    22.811] (II) xfree86: Adding drm device (/dev/dri/card0)
[    22.812] (II) xfree86: Adding drm device (/dev/dri/card1)
[    22.830] (--) PCI:*(0@0:2:0) 8086:0116:103c:1657 rev 9, Mem @ 0xc0000000/4194304, 0xb0000000/268435456, I/O @ 0x00006000/64, BIOS @ 0x????????/131072
[    22.830] (--) PCI: (1@0:0:0) 1002:6740:103c:1657 rev 0, Mem @ 0xa0000000/268435456, 0xc6500000/131072, I/O @ 0x00005000/256, BIOS @ 0x????????/131072
[    22.830] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    22.831] (II) LoadModule: "glx"
[    22.850] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    22.984] (II) Module glx: vendor="X.Org Foundation"
[    22.984] 	compiled for 1.20.8, module version = 1.0.0
[    22.984] 	ABI class: X.Org Server Extension, version 10.0
[    22.984] (II) Applying OutputClass "Radeon" to /dev/dri/card0
[    22.984] 	loading driver: radeon
[    22.984] (==) Matched intel as autoconfigured driver 0
[    22.984] (==) Matched radeon as autoconfigured driver 1
[    22.984] (==) Matched ati as autoconfigured driver 2
[    22.984] (==) Matched modesetting as autoconfigured driver 3
[    22.984] (==) Matched fbdev as autoconfigured driver 4
[    22.984] (==) Matched vesa as autoconfigured driver 5
[    22.984] (==) Assigned the driver to the xf86ConfigLayout
[    22.984] (II) LoadModule: "intel"
[    22.985] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    23.036] (II) Module intel: vendor="X.Org Foundation"
[    23.036] 	compiled for 1.20.8, module version = 2.99.917
[    23.036] 	Module class: X.Org Video Driver
[    23.036] 	ABI class: X.Org Video Driver, version 24.1
[    23.036] (II) LoadModule: "radeon"
[    23.037] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[    23.088] (II) Module radeon: vendor="X.Org Foundation"
[    23.088] 	compiled for 1.20.8, module version = 19.1.0
[    23.088] 	Module class: X.Org Video Driver
[    23.088] 	ABI class: X.Org Video Driver, version 24.1
[    23.088] (II) LoadModule: "ati"
[    23.089] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
[    23.089] (II) Module ati: vendor="X.Org Foundation"
[    23.089] 	compiled for 1.20.8, module version = 19.1.0
[    23.089] 	Module class: X.Org Video Driver
[    23.090] 	ABI class: X.Org Video Driver, version 24.1
[    23.090] (II) LoadModule: "modesetting"
[    23.090] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    23.100] (II) Module modesetting: vendor="X.Org Foundation"
[    23.100] 	compiled for 1.20.8, module version = 1.20.8
[    23.100] 	Module class: X.Org Video Driver
[    23.100] 	ABI class: X.Org Video Driver, version 24.1
[    23.100] (II) LoadModule: "fbdev"
[    23.114] (WW) Warning, couldn't open module fbdev
[    23.114] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    23.114] (II) LoadModule: "vesa"
[    23.115] (WW) Warning, couldn't open module vesa
[    23.115] (EE) Failed to load module "vesa" (module does not exist, 0)
[    23.115] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
	i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
	915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
	Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
	GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[    23.116] (II) intel: Driver for Intel(R) HD Graphics
[    23.116] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[    23.116] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[    23.116] (II) RADEON: Driver for ATI/AMD Radeon chipsets:
	ATI Radeon Mobility X600 (M24), ATI FireMV 2400,
	ATI Radeon Mobility X300 (M24), ATI FireGL M24 GL,
	ATI Radeon X600 (RV380), ATI FireGL V3200 (RV380),
	ATI Radeon IGP320 (A3), ATI Radeon IGP330/340/350 (A4),
	ATI Radeon 9500, ATI Radeon 9600TX, ATI FireGL Z1, ATI Radeon 9800SE,
	ATI Radeon 9800, ATI FireGL X2, ATI Radeon 9600, ATI Radeon 9600SE,
	ATI Radeon 9600XT, ATI FireGL T2, ATI Radeon 9650, ATI FireGL RV360,
	ATI Radeon 7000 IGP (A4+), ATI Radeon 8500 AIW,
	ATI Radeon IGP320M (U1), ATI Radeon IGP330M/340M/350M (U2),
	ATI Radeon Mobility 7000 IGP, ATI Radeon 9000/PRO, ATI Radeon 9000,
	ATI Radeon X800 (R420), ATI Radeon X800PRO (R420),
	ATI Radeon X800SE (R420), ATI FireGL X3 (R420),
	ATI Radeon Mobility 9800 (M18), ATI Radeon X800 SE (R420),
	ATI Radeon X800XT (R420), ATI Radeon X800 VE (R420),
	ATI Radeon X850 (R480), ATI Radeon X850 XT (R480),
	ATI Radeon X850 SE (R480), ATI Radeon X850 PRO (R480),
	ATI Radeon X850 XT PE (R480), ATI Radeon Mobility M7,
	ATI Mobility FireGL 7800 M7, ATI Radeon Mobility M6,
	ATI FireGL Mobility 9000 (M9), ATI Radeon Mobility 9000 (M9),
	ATI Radeon 9700 Pro, ATI Radeon 9700/9500Pro, ATI FireGL X1,
	ATI Radeon 9800PRO, ATI Radeon 9800XT,
	ATI Radeon Mobility 9600/9700 (M10/M11),
	ATI Radeon Mobility 9600 (M10), ATI Radeon Mobility 9600 (M11),
	ATI FireGL Mobility T2 (M10), ATI FireGL Mobility T2e (M11),
	ATI Radeon, ATI FireGL 8700/8800, ATI Radeon 8500, ATI Radeon 9100,
	ATI Radeon 7500, ATI Radeon VE/7000, ATI ES1000,
	ATI Radeon Mobility X300 (M22), ATI Radeon Mobility X600 SE (M24C),
	ATI FireGL M22 GL, ATI Radeon X800 (R423), ATI Radeon X800PRO (R423),
	ATI Radeon X800LE (R423), ATI Radeon X800SE (R423),
	ATI Radeon X800 XTP (R430), ATI Radeon X800 XL (R430),
	ATI Radeon X800 SE (R430), ATI Radeon X800 (R430),
	ATI FireGL V7100 (R423), ATI FireGL V5100 (R423),
	ATI FireGL unknown (R423), ATI Mobility FireGL V5000 (M26),
	ATI Mobility Radeon X700 XL (M26), ATI Mobility Radeon X700 (M26),
	ATI Radeon X550XTX, ATI Radeon 9100 IGP (A5),
	ATI Radeon Mobility 9100 IGP (U3), ATI Radeon XPRESS 200,
	ATI Radeon XPRESS 200M, ATI Radeon 9250, ATI Radeon 9200,
	ATI Radeon 9200SE, ATI FireMV 2200, ATI Radeon X300 (RV370),
	ATI Radeon X600 (RV370), ATI Radeon X550 (RV370),
	ATI FireGL V3100 (RV370), ATI FireMV 2200 PCIE (RV370),
	ATI Radeon Mobility 9200 (M9+), ATI Mobility Radeon X800 XT (M28),
	ATI Mobility FireGL V5100 (M28), ATI Mobility Radeon X800 (M28),
	ATI Radeon X850, ATI unknown Radeon / FireGL (R480),
	ATI Radeon X800XT (R423), ATI FireGL V5000 (RV410),
	ATI Radeon X700 XT (RV410), ATI Radeon X700 PRO (RV410),
	ATI Radeon X700 SE (RV410), ATI Radeon X700 (RV410),
	ATI Radeon X1800, ATI Mobility Radeon X1800 XT,
	ATI Mobility Radeon X1800, ATI Mobility FireGL V7200,
	ATI FireGL V7200, ATI FireGL V5300, ATI Mobility FireGL V7100,
	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
	ATI Mobility Radeon X1400, ATI Radeon X1550 64-bit,
	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI FireGL V3300,
	ATI FireGL V3350, ATI Mobility Radeon X1450,
	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
	ATI FireMV 2250, ATI Radeon X1650, ATI Mobility FireGL V5200,
	ATI Mobility Radeon X1600, ATI Radeon X1300 XT/X1600 Pro,
	ATI FireGL V3400, ATI Mobility FireGL V5250,
	ATI Mobility Radeon X1700, ATI Mobility Radeon X1700 XT,
	ATI FireGL V5200, ATI Radeon X2300HD, ATI Mobility Radeon HD 2300,
	ATI Radeon X1950, ATI Radeon X1900, ATI AMD Stream Processor,
	ATI RV560, ATI Mobility Radeon X1900, ATI Radeon X1950 GT, ATI RV570,
	ATI FireGL V7400, ATI Radeon 9100 PRO IGP,
	ATI Radeon Mobility 9200 IGP, ATI Radeon X1200, ATI RS740,
	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro,
	ATI Radeon HD 2900 GT, ATI FireGL V8650, ATI FireGL V8600,
	ATI FireGL V7600, ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
	ATI Radeon HD 4850 x2, ATI FirePro V8750 (FireGL),
	ATI FirePro V7760 (FireGL), ATI Mobility RADEON HD 4850,
	ATI Mobility RADEON HD 4850 X2, ATI FirePro RV770,
	AMD FireStream 9270, AMD FireStream 9250, ATI FirePro V8700 (FireGL),
	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
	ATI FirePro M7750, ATI M98, ATI Mobility Radeon HD 4650,
	ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670,
	ATI FirePro M5750, ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI RV610,
	ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro,
	ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI Radeon HD 2350,
	ATI Mobility Radeon HD 2400 XT, ATI Mobility Radeon HD 2400,
	ATI RADEON E2400, ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
	ATI Mobility Radeon HD 3850 X2, ATI Mobility Radeon HD 3870,
	ATI Mobility Radeon HD 3870 X2, ATI Radeon HD3870 X2,
	ATI FireGL V7700, ATI Radeon HD3690, AMD Firestream 9170,
	ATI Radeon HD 4550, ATI Radeon RV710, ATI Radeon HD 4350,
	ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
	ATI Radeon HD 3450, ATI Radeon HD 3430, ATI FirePro V3700,
	ATI FireMV 2450, ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
	ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3300 Graphics, ATI Radeon 3000 Graphics, SUMO, SUMO2,
	ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
	AMD Radeon HD 6300 Series Graphics,
	AMD Radeon HD 6200 Series Graphics, PALM, CYPRESS,
	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
	AMD Firestream 9350, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
	ATI Radeon HD 5670, ATI Radeon HD 5570, ATI Radeon HD 5500 Series,
	REDWOOD, ATI Mobility Radeon Graphics, CEDAR, ATI FirePro 2270,
	ATI Radeon HD 5450, CAYMAN, AMD Radeon HD 6900 Series,
	AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
	AMD Radeon HD 6800 Series, AMD Radeon HD 6700 Series, TURKS, CAICOS,
	ARUBA, TAHITI, PITCAIRN, VERDE, OLAND, HAINAN, BONAIRE, KABINI,
	MULLINS, KAVERI, HAWAII
[    23.122] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    23.136] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20200114
[    23.136] (II) intel(0): SNA compiled from 2.99.917-908-g7181c5a4
[    23.155] (WW) Falling back to old probe method for modesetting
[    23.155] (II) [KMS] Kernel modesetting enabled.
[    23.157] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 3000
[    23.157] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx; using a maximum of 4 threads
[    23.157] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    23.157] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[    23.157] (==) intel(0): RGB weight 888
[    23.157] (==) intel(0): Default visual is TrueColor
[    23.178] (II) intel(0): Output LVDS1 has no monitor section
[    23.178] (**) intel(0): Found backlight control interface intel_backlight (type 'raw') for output LVDS1
[    23.178] (II) intel(0): Enabled output LVDS1
[    23.179] (II) intel(0): Output VGA1 has no monitor section
[    23.179] (II) intel(0): Enabled output VGA1
[    23.179] (II) intel(0): Output HDMI1 has no monitor section
[    23.179] (II) intel(0): Enabled output HDMI1
[    23.179] (II) intel(0): Output DP1 has no monitor section
[    23.180] (II) intel(0): Enabled output DP1
[    23.180] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[    23.180] (II) intel(0): Output VIRTUAL1 has no monitor section
[    23.180] (II) intel(0): Enabled output VIRTUAL1
[    23.180] (--) intel(0): Output LVDS1 using initial mode 1366x768 on pipe 0
[    23.181] (==) intel(0): TearFree disabled
[    23.181] (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
[    23.181] (==) intel(0): DPI set to (96, 96)
[    23.181] (II) Loading sub module "dri3"
[    23.181] (II) LoadModule: "dri3"
[    23.181] (II) Module "dri3" already built-in
[    23.181] (II) Loading sub module "dri2"
[    23.181] (II) LoadModule: "dri2"
[    23.181] (II) Module "dri2" already built-in
[    23.181] (II) Loading sub module "present"
[    23.181] (II) LoadModule: "present"
[    23.181] (II) Module "present" already built-in
[    23.181] (==) RADEON(G0): Depth 24, (--) framebuffer bpp 32
[    23.181] (II) RADEON(G0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    23.181] (==) RADEON(G0): Default visual is TrueColor
[    23.181] (==) RADEON(G0): RGB weight 888
[    23.181] (II) RADEON(G0): Using 8 bits per RGB (8 bit DAC)
[    23.181] (--) RADEON(G0): Chipset: "TURKS" (ChipID = 0x6740)
[    23.181] (II) Loading sub module "fb"
[    23.181] (II) LoadModule: "fb"
[    23.182] (II) Loading /usr/lib/xorg/modules/libfb.so
[    23.204] (II) Module fb: vendor="X.Org Foundation"
[    23.204] 	compiled for 1.20.8, module version = 1.0.0
[    23.204] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    23.204] (II) Loading sub module "dri2"
[    23.204] (II) LoadModule: "dri2"
[    23.204] (II) Module "dri2" already built-in
[    25.098] (II) Loading sub module "glamoregl"
[    25.098] (II) LoadModule: "glamoregl"
[    25.098] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    25.173] (II) Module glamoregl: vendor="X.Org Foundation"
[    25.173] 	compiled for 1.20.8, module version = 1.0.1
[    25.173] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    25.418] (II) RADEON(G0): glamor X acceleration enabled on AMD TURKS (DRM 2.50.0 / 5.6.14-arch1-1, LLVM 10.0.0)
[    25.418] (II) RADEON(G0): glamor detected, initialising EGL layer.
[    25.418] (II) RADEON(G0): KMS Color Tiling: enabled
[    25.418] (II) RADEON(G0): KMS Color Tiling 2D: enabled
[    25.418] (==) RADEON(G0): TearFree property default: auto
[    25.419] (II) RADEON(G0): mem size init: gart size :3fdde000 vram size: s:40000000 visible:fc9d000
[    25.419] (==) RADEON(G0): DPI set to (96, 96)
[    25.419] (==) RADEON(G0): Using gamma correction (1.0, 1.0, 1.0)
[    25.419] (II) Loading sub module "ramdac"
[    25.419] (II) LoadModule: "ramdac"
[    25.419] (II) Module "ramdac" already built-in
[    25.419] (II) UnloadModule: "modesetting"
[    25.419] (II) Unloading modesetting
[    25.466] (II) intel(0): SNA initialized with Sandybridge (gen6, gt2) backend
[    25.466] (==) intel(0): Backing store enabled
[    25.466] (==) intel(0): Silken mouse disabled
[    25.466] (II) intel(0): HW Cursor enabled
[    25.472] (==) intel(0): DPMS enabled
[    25.472] (==) intel(0): Display hotplug detection enabled
[    25.473] (II) intel(0): [DRI2] Setup complete
[    25.473] (II) intel(0): [DRI2]   DRI driver: i965
[    25.473] (II) intel(0): [DRI2]   VDPAU driver: va_gl
[    25.473] (II) intel(0): direct rendering: DRI2 DRI3 enabled
[    25.473] (II) intel(0): hardware support for Present enabled
[    25.474] (II) RADEON(G0): [DRI2] Setup complete
[    25.474] (II) RADEON(G0): [DRI2]   DRI driver: r600
[    25.474] (II) RADEON(G0): [DRI2]   VDPAU driver: r600
[    25.474] (II) RADEON(G0): Front buffer size: 3072K
[    25.474] (II) RADEON(G0): VRAM usage limit set to 229957K
[    25.475] (==) RADEON(G0): Backing store enabled
[    25.475] (II) RADEON(G0): Direct rendering enabled
[    25.860] (II) RADEON(G0): Use GLAMOR acceleration.
[    25.860] (II) RADEON(G0): Acceleration enabled
[    25.860] (==) RADEON(G0): DPMS enabled
[    25.860] (==) RADEON(G0): Silken mouse disabled
[    25.860] (II) Initializing extension Generic Event Extension
[    25.861] (II) Initializing extension SHAPE
[    25.861] (II) Initializing extension MIT-SHM
[    25.861] (II) Initializing extension XInputExtension
[    25.873] (II) Initializing extension XTEST
[    25.873] (II) Initializing extension BIG-REQUESTS
[    25.873] (II) Initializing extension SYNC
[    25.874] (II) Initializing extension XKEYBOARD
[    25.874] (II) Initializing extension XC-MISC
[    25.875] (II) Initializing extension SECURITY
[    25.875] (II) Initializing extension XFIXES
[    25.875] (II) Initializing extension RENDER
[    25.876] (II) Initializing extension RANDR
[    25.876] (II) Initializing extension COMPOSITE
[    25.877] (II) Initializing extension DAMAGE
[    25.877] (II) Initializing extension MIT-SCREEN-SAVER
[    25.877] (II) Initializing extension DOUBLE-BUFFER
[    25.878] (II) Initializing extension RECORD
[    25.878] (II) Initializing extension DPMS
[    25.878] (II) Initializing extension Present
[    25.879] (II) Initializing extension DRI3
[    25.879] (II) Initializing extension X-Resource
[    25.879] (II) Initializing extension XVideo
[    25.880] (II) Initializing extension XVideo-MotionCompensation
[    25.880] (II) Initializing extension GLX
[    26.201] (II) AIGLX: Loaded and initialized i965
[    26.201] (II) GLX: Initialized DRI2 GL provider for screen 0
[    26.201] (II) Initializing extension XFree86-VidModeExtension
[    26.201] (II) Initializing extension XFree86-DGA
[    26.201] (II) Initializing extension XFree86-DRI
[    26.201] (II) Initializing extension DRI2
[    26.368] (II) intel(0): switch to mode 1366x768@60.0 on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
[    26.380] (II) intel(0): Setting screen physical size to 361 x 203
[    26.946] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    26.946] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    26.946] (II) LoadModule: "libinput"
[    26.947] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    26.990] (II) Module libinput: vendor="X.Org Foundation"
[    26.990] 	compiled for 1.20.8, module version = 0.30.0
[    26.990] 	Module class: X.Org XInput Driver
[    26.990] 	ABI class: X.Org XInput driver, version 24.1
[    26.990] (II) Using input driver 'libinput' for 'Power Button'
[    26.990] (**) Power Button: always reports core events
[    26.990] (**) Option "Device" "/dev/input/event2"
[    26.990] (**) Option "_source" "server/udev"
[    27.034] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    27.034] (II) event2  - Power Button: device is a keyboard
[    27.034] (II) event2  - Power Button: device removed
[    27.054] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[    27.054] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    27.057] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    27.057] (II) event2  - Power Button: device is a keyboard
[    27.059] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
[    27.059] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    27.059] (II) Using input driver 'libinput' for 'Video Bus'
[    27.059] (**) Video Bus: always reports core events
[    27.060] (**) Option "Device" "/dev/input/event9"
[    27.060] (**) Option "_source" "server/udev"
[    27.063] (II) event9  - Video Bus: is tagged by udev as: Keyboard
[    27.063] (II) event9  - Video Bus: device is a keyboard
[    27.063] (II) event9  - Video Bus: device removed
[    27.120] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input11/event9"
[    27.121] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    27.125] (II) event9  - Video Bus: is tagged by udev as: Keyboard
[    27.125] (II) event9  - Video Bus: device is a keyboard
[    27.127] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    27.127] (II) No input driver specified, ignoring this device.
[    27.127] (II) This device may have been added with another device file.
[    27.129] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
[    27.129] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    27.129] (II) Using input driver 'libinput' for 'Video Bus'
[    27.129] (**) Video Bus: always reports core events
[    27.129] (**) Option "Device" "/dev/input/event8"
[    27.129] (**) Option "_source" "server/udev"
[    27.133] (II) event8  - Video Bus: is tagged by udev as: Keyboard
[    27.134] (II) event8  - Video Bus: device is a keyboard
[    27.134] (II) event8  - Video Bus: device removed
[    27.187] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2c/LNXVIDEO:00/input/input10/event8"
[    27.187] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[    27.192] (II) event8  - Video Bus: is tagged by udev as: Keyboard
[    27.192] (II) event8  - Video Bus: device is a keyboard
[    27.194] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    27.194] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    27.194] (II) Using input driver 'libinput' for 'Power Button'
[    27.194] (**) Power Button: always reports core events
[    27.194] (**) Option "Device" "/dev/input/event1"
[    27.194] (**) Option "_source" "server/udev"
[    27.197] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    27.197] (II) event1  - Power Button: device is a keyboard
[    27.198] (II) event1  - Power Button: device removed
[    27.227] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    27.227] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[    27.231] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    27.231] (II) event1  - Power Button: device is a keyboard
[    27.235] (II) config/udev: Adding input device HP TrueVision HD: HP TrueVision (/dev/input/event7)
[    27.235] (**) HP TrueVision HD: HP TrueVision: Applying InputClass "libinput keyboard catchall"
[    27.235] (II) Using input driver 'libinput' for 'HP TrueVision HD: HP TrueVision'
[    27.235] (**) HP TrueVision HD: HP TrueVision: always reports core events
[    27.235] (**) Option "Device" "/dev/input/event7"
[    27.235] (**) Option "_source" "server/udev"
[    27.240] (II) event7  - HP TrueVision HD: HP TrueVision: is tagged by udev as: Keyboard
[    27.240] (II) event7  - HP TrueVision HD: HP TrueVision: device is a keyboard
[    27.240] (II) event7  - HP TrueVision HD: HP TrueVision: device removed
[    27.307] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input9/event7"
[    27.307] (II) XINPUT: Adding extended input device "HP TrueVision HD: HP TrueVision" (type: KEYBOARD, id 10)
[    27.313] (II) event7  - HP TrueVision HD: HP TrueVision: is tagged by udev as: Keyboard
[    27.313] (II) event7  - HP TrueVision HD: HP TrueVision: device is a keyboard
[    27.314] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event10)
[    27.314] (II) No input driver specified, ignoring this device.
[    27.314] (II) This device may have been added with another device file.
[    27.316] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event11)
[    27.316] (II) No input driver specified, ignoring this device.
[    27.316] (II) This device may have been added with another device file.
[    27.317] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event12)
[    27.317] (II) No input driver specified, ignoring this device.
[    27.317] (II) This device may have been added with another device file.
[    27.318] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event13)
[    27.318] (II) No input driver specified, ignoring this device.
[    27.318] (II) This device may have been added with another device file.
[    27.320] (II) config/udev: Adding input device Logitech Gaming Mouse G302 (/dev/input/event14)
[    27.320] (**) Logitech Gaming Mouse G302: Applying InputClass "libinput pointer catchall"
[    27.320] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G302'
[    27.320] (**) Logitech Gaming Mouse G302: always reports core events
[    27.320] (**) Option "Device" "/dev/input/event14"
[    27.320] (**) Option "_source" "server/udev"
[    27.382] (II) event14 - Logitech Gaming Mouse G302: is tagged by udev as: Mouse
[    27.382] (II) event14 - Logitech Gaming Mouse G302: device is a pointer
[    27.382] (II) event14 - Logitech Gaming Mouse G302: device removed
[    27.440] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-2/2-2:1.0/0003:046D:C07F.0001/input/input16/event14"
[    27.441] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G302" (type: MOUSE, id 11)
[    27.441] (**) Option "AccelerationScheme" "none"
[    27.441] (**) Logitech Gaming Mouse G302: (accel) selected scheme none/0
[    27.441] (**) Logitech Gaming Mouse G302: (accel) acceleration factor: 2.000
[    27.441] (**) Logitech Gaming Mouse G302: (accel) acceleration threshold: 4
[    27.502] (II) event14 - Logitech Gaming Mouse G302: is tagged by udev as: Mouse
[    27.502] (II) event14 - Logitech Gaming Mouse G302: device is a pointer
[    27.505] (II) config/udev: Adding input device Logitech Gaming Mouse G302 (/dev/input/mouse0)
[    27.505] (II) No input driver specified, ignoring this device.
[    27.505] (II) This device may have been added with another device file.
[    27.507] (II) config/udev: Adding input device Logitech Gaming Mouse G302 Keyboard (/dev/input/event15)
[    27.507] (**) Logitech Gaming Mouse G302 Keyboard: Applying InputClass "libinput keyboard catchall"
[    27.507] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G302 Keyboard'
[    27.507] (**) Logitech Gaming Mouse G302 Keyboard: always reports core events
[    27.507] (**) Option "Device" "/dev/input/event15"
[    27.507] (**) Option "_source" "server/udev"
[    27.511] (II) event15 - Logitech Gaming Mouse G302 Keyboard: is tagged by udev as: Keyboard
[    27.511] (II) event15 - Logitech Gaming Mouse G302 Keyboard: device is a keyboard
[    27.511] (II) event15 - Logitech Gaming Mouse G302 Keyboard: device removed
[    27.534] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-2/2-2:1.1/0003:046D:C07F.0002/input/input17/event15"
[    27.534] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G302 Keyboard" (type: KEYBOARD, id 12)
[    27.537] (II) event15 - Logitech Gaming Mouse G302 Keyboard: is tagged by udev as: Keyboard
[    27.537] (II) event15 - Logitech Gaming Mouse G302 Keyboard: device is a keyboard
[    27.538] (II) config/udev: Adding input device Logitech Gaming Mouse G302 Consumer Control (/dev/input/event16)
[    27.538] (**) Logitech Gaming Mouse G302 Consumer Control: Applying InputClass "libinput keyboard catchall"
[    27.538] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G302 Consumer Control'
[    27.538] (**) Logitech Gaming Mouse G302 Consumer Control: always reports core events
[    27.538] (**) Option "Device" "/dev/input/event16"
[    27.538] (**) Option "_source" "server/udev"
[    27.541] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: is tagged by udev as: Keyboard
[    27.541] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: device is a keyboard
[    27.541] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: device removed
[    27.574] (II) libinput: Logitech Gaming Mouse G302 Consumer Control: needs a virtual subdevice
[    27.574] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-2/2-2:1.1/0003:046D:C07F.0002/input/input18/event16"
[    27.574] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G302 Consumer Control" (type: MOUSE, id 13)
[    27.574] (**) Option "AccelerationScheme" "none"
[    27.574] (**) Logitech Gaming Mouse G302 Consumer Control: (accel) selected scheme none/0
[    27.574] (**) Logitech Gaming Mouse G302 Consumer Control: (accel) acceleration factor: 2.000
[    27.574] (**) Logitech Gaming Mouse G302 Consumer Control: (accel) acceleration threshold: 4
[    27.580] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: is tagged by udev as: Keyboard
[    27.580] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: device is a keyboard
[    27.583] (II) config/udev: Adding input device Logitech Gaming Mouse G302 System Control (/dev/input/event17)
[    27.583] (**) Logitech Gaming Mouse G302 System Control: Applying InputClass "libinput keyboard catchall"
[    27.583] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G302 System Control'
[    27.583] (**) Logitech Gaming Mouse G302 System Control: always reports core events
[    27.583] (**) Option "Device" "/dev/input/event17"
[    27.583] (**) Option "_source" "server/udev"
[    27.585] (II) event17 - Logitech Gaming Mouse G302 System Control: is tagged by udev as: Keyboard
[    27.585] (II) event17 - Logitech Gaming Mouse G302 System Control: device is a keyboard
[    27.585] (II) event17 - Logitech Gaming Mouse G302 System Control: device removed
[    27.600] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-2/2-2:1.1/0003:046D:C07F.0002/input/input19/event17"
[    27.600] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G302 System Control" (type: KEYBOARD, id 14)
[    27.603] (II) event17 - Logitech Gaming Mouse G302 System Control: is tagged by udev as: Keyboard
[    27.603] (II) event17 - Logitech Gaming Mouse G302 System Control: device is a keyboard
[    27.605] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[    27.605] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    27.605] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    27.605] (**) AT Translated Set 2 keyboard: always reports core events
[    27.605] (**) Option "Device" "/dev/input/event3"
[    27.605] (**) Option "_source" "server/udev"
[    27.607] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    27.607] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[    27.608] (II) event3  - AT Translated Set 2 keyboard: device removed
[    27.631] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[    27.631] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 15)
[    27.635] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    27.635] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[    27.640] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/event5)
[    27.640] (II) No input driver specified, ignoring this device.
[    27.640] (II) This device may have been added with another device file.
[    27.641] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/js0)
[    27.641] (II) No input driver specified, ignoring this device.
[    27.641] (II) This device may have been added with another device file.
[    27.642] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[    27.642] (II) No input driver specified, ignoring this device.
[    27.642] (II) This device may have been added with another device file.
[    27.644] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event6)
[    27.644] (**) HP WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    27.644] (II) Using input driver 'libinput' for 'HP WMI hotkeys'
[    27.644] (**) HP WMI hotkeys: always reports core events
[    27.644] (**) Option "Device" "/dev/input/event6"
[    27.644] (**) Option "_source" "server/udev"
[    27.645] (II) event6  - HP WMI hotkeys: is tagged by udev as: Keyboard Switch
[    27.645] (II) event6  - HP WMI hotkeys: device is a keyboard
[    27.645] (II) event6  - HP WMI hotkeys: device removed
[    27.689] (**) Option "config_info" "udev:/sys/devices/virtual/input/input8/event6"
[    27.689] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 16)
[    27.692] (II) event6  - HP WMI hotkeys: is tagged by udev as: Keyboard Switch
[    27.692] (II) event6  - HP WMI hotkeys: device is a keyboard
[    27.716] (**) Logitech Gaming Mouse G302 Consumer Control: Applying InputClass "libinput keyboard catchall"
[    27.716] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G302 Consumer Control'
[    27.716] (**) Logitech Gaming Mouse G302 Consumer Control: always reports core events
[    27.716] (**) Option "Device" "/dev/input/event16"
[    27.716] (**) Option "_source" "_driver/libinput"
[    27.716] (II) libinput: Logitech Gaming Mouse G302 Consumer Control: is a virtual subdevice
[    27.716] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-2/2-2:1.1/0003:046D:C07F.0002/input/input18/event16"
[    27.716] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G302 Consumer Control" (type: KEYBOARD, id 17)
[    27.717] (II) intel(0): EDID vendor "AUO", prod id 8940
[    27.717] (II) intel(0): Printing DDC gathered Modelines:
[    27.717] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1398 1422 1432  768 771 775 806 -hsync -vsync (48.4 kHz eP)
[    27.720] (II) event14 - Logitech Gaming Mouse G302: SYN_DROPPED event - some input events have been lost.
[    27.721] (II) config/udev: removing device Logitech Gaming Mouse G302 Consumer Control
[    27.721] (II) UnloadModule: "libinput"
[    27.722] (II) config/udev: removing device Logitech Gaming Mouse G302 Consumer Control
[    27.722] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: device removed
[    27.744] (II) UnloadModule: "libinput"
[    27.746] (II) config/udev: Adding input device Logitech Gaming Mouse G302 Consumer Control (/dev/input/event16)
[    27.746] (**) Logitech Gaming Mouse G302 Consumer Control: Applying InputClass "libinput keyboard catchall"
[    27.746] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G302 Consumer Control'
[    27.746] (**) Logitech Gaming Mouse G302 Consumer Control: always reports core events
[    27.746] (**) Option "Device" "/dev/input/event16"
[    27.746] (**) Option "_source" "server/udev"
[    27.751] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: is tagged by udev as: Keyboard
[    27.751] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: device is a keyboard
[    27.752] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: device removed
[    27.801] (II) libinput: Logitech Gaming Mouse G302 Consumer Control: needs a virtual subdevice
[    27.801] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-2/2-2:1.1/0003:046D:C07F.0002/input/input18/event16"
[    27.801] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G302 Consumer Control" (type: MOUSE, id 13)
[    27.801] (**) Option "AccelerationScheme" "none"
[    27.801] (**) Logitech Gaming Mouse G302 Consumer Control: (accel) selected scheme none/0
[    27.801] (**) Logitech Gaming Mouse G302 Consumer Control: (accel) acceleration factor: 2.000
[    27.801] (**) Logitech Gaming Mouse G302 Consumer Control: (accel) acceleration threshold: 4
[    27.806] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: is tagged by udev as: Keyboard
[    27.806] (II) event16 - Logitech Gaming Mouse G302 Consumer Control: device is a keyboard
[    27.807] (**) Logitech Gaming Mouse G302 Consumer Control: Applying InputClass "libinput keyboard catchall"
[    27.807] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G302 Consumer Control'
[    27.807] (**) Logitech Gaming Mouse G302 Consumer Control: always reports core events
[    27.807] (**) Option "Device" "/dev/input/event16"
[    27.807] (**) Option "_source" "_driver/libinput"
[    27.807] (II) libinput: Logitech Gaming Mouse G302 Consumer Control: is a virtual subdevice
[    27.807] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-2/2-2:1.1/0003:046D:C07F.0002/input/input18/event16"
[    27.808] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G302 Consumer Control" (type: KEYBOARD, id 17)
[    27.809] (II) config/udev: removing device Logitech Gaming Mouse G302 Keyboard
[    27.809] (II) event15 - Logitech Gaming Mouse G302 Keyboard: device removed
[    27.841] (II) UnloadModule: "libinput"
[    27.842] (II) config/udev: Adding input device Logitech Gaming Mouse G302 Keyboard (/dev/input/event15)
[    27.843] (**) Logitech Gaming Mouse G302 Keyboard: Applying InputClass "libinput keyboard catchall"
[    27.843] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G302 Keyboard'
[    27.843] (**) Logitech Gaming Mouse G302 Keyboard: always reports core events
[    27.843] (**) Option "Device" "/dev/input/event15"
[    27.843] (**) Option "_source" "server/udev"
[    27.847] (II) event15 - Logitech Gaming Mouse G302 Keyboard: is tagged by udev as: Keyboard
[    27.848] (II) event15 - Logitech Gaming Mouse G302 Keyboard: device is a keyboard
[    27.848] (II) event15 - Logitech Gaming Mouse G302 Keyboard: device removed
[    27.880] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-2/2-2:1.1/0003:046D:C07F.0002/input/input17/event15"
[    27.881] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G302 Keyboard" (type: KEYBOARD, id 12)
[    27.886] (II) event15 - Logitech Gaming Mouse G302 Keyboard: is tagged by udev as: Keyboard
[    27.886] (II) event15 - Logitech Gaming Mouse G302 Keyboard: device is a keyboard
[    27.887] (II) config/udev: removing device Logitech Gaming Mouse G302 System Control
[    27.888] (II) event17 - Logitech Gaming Mouse G302 System Control: device removed
[    27.907] (II) UnloadModule: "libinput"
[    27.909] (II) config/udev: Adding input device Logitech Gaming Mouse G302 System Control (/dev/input/event17)
[    27.909] (**) Logitech Gaming Mouse G302 System Control: Applying InputClass "libinput keyboard catchall"
[    27.909] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G302 System Control'
[    27.909] (**) Logitech Gaming Mouse G302 System Control: always reports core events
[    27.909] (**) Option "Device" "/dev/input/event17"
[    27.909] (**) Option "_source" "server/udev"
[    27.913] (II) event17 - Logitech Gaming Mouse G302 System Control: is tagged by udev as: Keyboard
[    27.914] (II) event17 - Logitech Gaming Mouse G302 System Control: device is a keyboard
[    27.914] (II) event17 - Logitech Gaming Mouse G302 System Control: device removed
[    27.947] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-2/2-2:1.1/0003:046D:C07F.0002/input/input19/event17"
[    27.947] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G302 System Control" (type: KEYBOARD, id 14)
[    27.953] (II) event17 - Logitech Gaming Mouse G302 System Control: is tagged by udev as: Keyboard
[    27.953] (II) event17 - Logitech Gaming Mouse G302 System Control: device is a keyboard
[    27.954] (II) config/udev: removing device Logitech Gaming Mouse G302
[    27.954] (II) event14 - Logitech Gaming Mouse G302: device removed
[    28.000] (II) UnloadModule: "libinput"
[    28.002] (II) config/udev: Adding input device Logitech Gaming Mouse G302 (/dev/input/event14)
[    28.003] (**) Logitech Gaming Mouse G302: Applying InputClass "libinput pointer catchall"
[    28.003] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G302'
[    28.003] (**) Logitech Gaming Mouse G302: always reports core events
[    28.003] (**) Option "Device" "/dev/input/event14"
[    28.003] (**) Option "_source" "server/udev"
[    28.061] (II) event14 - Logitech Gaming Mouse G302: is tagged by udev as: Mouse
[    28.062] (II) event14 - Logitech Gaming Mouse G302: device is a pointer
[    28.062] (II) event14 - Logitech Gaming Mouse G302: device removed
[    28.134] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-2/2-2:1.0/0003:046D:C07F.0001/input/input16/event14"
[    28.134] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G302" (type: MOUSE, id 11)
[    28.134] (**) Option "AccelerationScheme" "none"
[    28.134] (**) Logitech Gaming Mouse G302: (accel) selected scheme none/0
[    28.134] (**) Logitech Gaming Mouse G302: (accel) acceleration factor: 2.000
[    28.134] (**) Logitech Gaming Mouse G302: (accel) acceleration threshold: 4
[    28.195] (II) event14 - Logitech Gaming Mouse G302: is tagged by udev as: Mouse
[    28.195] (II) event14 - Logitech Gaming Mouse G302: device is a pointer
[    28.198] (II) config/udev: Adding input device Logitech Gaming Mouse G302 (/dev/input/mouse0)
[    28.198] (II) No input driver specified, ignoring this device.
[    28.198] (II) This device may have been added with another device file.
[    28.210] (EE) Failed to open authorization file "/var/run/sddm/{07180d8a-69ba-4a7f-a936-6805de1ea2a2}": No such file or directory
[    49.910] (II) config/udev: Adding input device GeneralPlus USB Audio Device (/dev/input/event18)
[    49.910] (**) GeneralPlus USB Audio Device: Applying InputClass "libinput keyboard catchall"
[    49.910] (II) Using input driver 'libinput' for 'GeneralPlus USB Audio Device'
[    49.910] (**) GeneralPlus USB Audio Device: always reports core events
[    49.910] (**) Option "Device" "/dev/input/event18"
[    49.910] (**) Option "_source" "server/udev"
[    49.911] (II) event18 - GeneralPlus USB Audio Device: is tagged by udev as: Keyboard
[    49.912] (II) event18 - GeneralPlus USB Audio Device: device is a keyboard
[    49.912] (II) event18 - GeneralPlus USB Audio Device: device removed
[    49.931] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:19:00.0/usb2/2-1/2-1:1.3/0003:1B3F:2008.0003/input/input22/event18"
[    49.931] (II) XINPUT: Adding extended input device "GeneralPlus USB Audio Device" (type: KEYBOARD, id 18)
[    49.976] (II) event18 - GeneralPlus USB Audio Device: is tagged by udev as: Keyboard
[    49.976] (II) event18 - GeneralPlus USB Audio Device: device is a keyboard
[  1111.796] (II) intel(0): switch to mode 1280x720@59.7 on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
[  1111.860] (II) intel(0): resizing framebuffer to 1280x720
[  7058.548] (II) intel(0): resizing framebuffer to 1366x768
[  7058.565] (II) intel(0): switch to mode 1366x768@60.0 on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none

Offline

#22 2020-05-26 12:21:05

seth
Member
Registered: 2012-09-03
Posts: 51,017

Re: Switching the primary GPU.

You're running X11 on the intel chip which is your primary GPU, but I understand your goal was to switch that to radeon?
The reason is likely that

There's nothing in /etc/X11/xorg.conf.

Offline

#23 2020-05-26 12:29:50

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Then, what could I do about it?

Offline

#24 2020-05-26 12:33:34

seth
Member
Registered: 2012-09-03
Posts: 51,017

Re: Switching the primary GPU.

seth wrote:

The reason is likely that

There's nothing in /etc/X11/xorg.conf.

Offline

#25 2020-05-26 12:48:18

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

I understand that but, what should I write in it? I'm really dumb with these kind of things..

Offline

Board footer

Powered by FluxBB