From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [GuixSD] Extremely low framerate on desktop. Date: Wed, 1 Mar 2017 11:59:18 +0000 Message-ID: <20170301115449.fmkiv3biepln6oln@abyayala> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34510) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cj1qE-0004Rz-QN for help-guix@gnu.org; Wed, 01 Mar 2017 05:50:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cj1q7-0001TG-GU for help-guix@gnu.org; Wed, 01 Mar 2017 05:50:42 -0500 Received: from perdizione.investici.org ([94.23.50.208]:22749) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cj1q6-0001SW-S5 for help-guix@gnu.org; Wed, 01 Mar 2017 05:50:35 -0500 Content-Disposition: inline In-Reply-To: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Matthew Brooks Cc: help-guix@gnu.org Hi, On 17-02-28 01:44:07, Matthew Brooks wrote: > On the Gnome desktop (and also, "Gnome on Xorg"), I seem to be getting > an average of about one frame per second with just the basic desktop > up, which makes the system essentially unusable. > glxgears *says* it's running at 160 FPS, but the screen is quite > clearly only updating maybe 3-5 times per second, so I have no idea > where it's getting 160 from. Additionally, even without the > proprietary Nvidia drivers, I've usually gotten several thousand FPS > on glxgears in other distros, so such a low number is *really* weird. > My monitor's refresh rate is 60, so it's not being capped by that. > > XFCE is at least usable, but attempting to play even a 480p video > results in a slideshow, rather than a video. glxgears reports only > ~120 FPS here, but actually moves smoothly, unlike under Gnome. This reads like your GPU requires a binary blob, but I can't say for sure as I can't use a webbrowser to verify this. I've tried some cards I have, the only one which is acceptable (and still would require a blob) is GeForce 7300GS. Some other ATI and NVidia cards are terrible, and I got rid of the the mainboards which could be used with the PCI and AGP cards I have. So if it is indeed because of a blob (someone else could be able to verify this) you have two options: Option one, probably not supported here but with some search you can find out how to do it* nevertheless: Use the vanilla linux kernel and/or some other option to make linux-libre let you use the blob. Option two: look into other cards which would work. But as I said, I'm not sure wether there is a problem with blobs at all, so verify first. *github, gitlab, personal blogs, etc. > I'm including my config.scm, the output of glxinfo, and the output of > lspci, at the bottom of this message, but I'll sum up the bits that > look relevant first. > If there's anything else I should send to help figure out the problem, > please let me know. > > From glxinfo, the graphics card vendor is listed as "VMware, Inc.", > and the OpenGL render string is "Gallium 0.4 on softpipe". > I'm running this on bare metal, not in a VM, so that first bit appears > to be very wrong. The "Gallium softpipe" bit seems to indicate it's > running in software rendering mode, from what I can gather. > I've verified that the nouveau module *is* loaded. In fact, it seems > to automatically start at boot, and I didn't have to manually start it > or anything, so I don't know why it's not properly picking up my > Nvidia card. Trisquel seems to have no problem with it, so it doesn't > look like it's an issue of missing proprietary bits or anything. > I've also verified that I am indeed in the "video" user group, just in > case that could cause issues. > > My config.scm is pretty much the same as the "desktop.scm" example > from the 12.0 installation image, but without and encryption, and with > a few more drives. I don't expect that there's any major problems with > it, but I'm including it just in case. > > Also, under Gnome, "top" is showing "..gnome-shell-r" as taking up 99% > CPU constantly. I think that's ".gnome-shell-real", but the text gets > cut off. > Under XFCE, nothing seems to be using anywhere near that much CPU. > > Anyway, below this is the "config.scm" file and the full output of > "glxinfo" and "lspci". Thanks for your time, and have a nice day. > > > config.scm: > ;; This is an operating system configuration template > ;; for a "desktop" setup with GNOME and Xfce where the > ;; root partition is encrypted with LUKS. > > (use-modules (gnu) (gnu system nss)) > (use-service-modules desktop) > (use-package-modules certs gnome) > > (operating-system > (host-name "Desktop") > (timezone "America/Chicago") > (locale "en_US.UTF-8") > > ;; Assuming /dev/sdX is the target hard disk, and "my-root" > ;; is the label of the target root file system. > (bootloader (grub-configuration (device "/dev/sdb"))) > > ;; Specify a mapped device for the encrypted root partition. > ;; The UUID is that returned by 'cryptsetup luksUUID'. > (file-systems (cons* (file-system > (device "root") > (title 'label) > (mount-point "/") > (type "ext4")) > (file-system > (device "home") > (title 'label) > (mount-point "/home") > (type "ext4")) > (file-system > (device "data") > (title 'label) > (mount-point "/mnt/data") > (type "ext4")) > (file-system > (device "4TB") > (title 'label) > (mount-point "/mnt/4TB") > (type "ext4")) > %base-file-systems)) > > (users (cons (user-account > (name "mbrooks") > (comment "") > (group "users") > (supplementary-groups '("wheel" "netdev" > "audio" "video")) > (home-directory "/home/mbrooks")) > %base-user-accounts)) > > ;; This is where we specify system-wide packages. > (packages (cons* nss-certs ;for HTTPS access > gvfs ;for user mounts > %base-packages)) > > ;; Add GNOME and/or Xfce---we can choose at the log-in > ;; screen with F1. Use the "desktop" services, which > ;; include the X11 log-in service, networking with Wicd, > ;; and more. > (services (cons* (xfce-desktop-service) > (gnome-desktop-service) > %desktop-services)) > > ;; Allow resolution of '.local' host names with mDNS. > (name-service-switch %mdns-host-lookup-nss)) > > > glxinfo: > name of display: :0.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_profile, > 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_texture_from_pixmap, GLX_EXT_visual_info, > GLX_EXT_visual_rating, 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 > client glx vendor string: Mesa Project and SGI > client glx version string: 1.4 > client glx extensions: > GLX_ARB_create_context, 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_profile, > GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, > GLX_ARB_get_proc_address, 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_texture_from_pixmap, GLX_EXT_visual_info, > GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, > GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer, > GLX_OML_swap_method, GLX_SGIS_multisample, GLX_SGIX_fbconfig, > GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, GLX_SGI_make_current_read > Extended renderer info (GLX_MESA_query_renderer): > Vendor: VMware, Inc. (0xffffffff) > Device: softpipe (0xffffffff) > Version: 13.0.2 > Accelerated: no > Video memory: 16047MB > Unified memory: no > 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: VMware, Inc. > OpenGL renderer string: Gallium 0.4 on softpipe > OpenGL core profile version string: 3.3 (Core Profile) Mesa 13.0.2 > 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_AMD_conservative_depth, GL_AMD_draw_buffers_blend, > GL_AMD_seamless_cubemap_per_texture, GL_AMD_shader_stencil_export, > GL_AMD_shader_trinary_minmax, GL_AMD_vertex_shader_layer, > GL_AMD_vertex_shader_viewport_index, GL_ANGLE_texture_compression_dxt3, > GL_ANGLE_texture_compression_dxt5, GL_ARB_ES2_compatibility, > GL_ARB_ES3_compatibility, GL_ARB_arrays_of_arrays, GL_ARB_base_instance, > GL_ARB_blend_func_extended, GL_ARB_clear_buffer_object, > GL_ARB_clip_control, GL_ARB_color_buffer_float, > GL_ARB_compressed_texture_pixel_storage, GL_ARB_compute_shader, > GL_ARB_conditional_render_inverted, GL_ARB_conservative_depth, > 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_indirect, 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_no_attachments, > GL_ARB_framebuffer_object, GL_ARB_framebuffer_sRGB, > GL_ARB_get_program_binary, GL_ARB_get_texture_sub_image, > GL_ARB_gpu_shader_fp64, 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_multi_draw_indirect, GL_ARB_occlusion_query2, > GL_ARB_pipeline_statistics_query, GL_ARB_pixel_buffer_object, > GL_ARB_point_sprite, GL_ARB_program_interface_query, > GL_ARB_provoking_vertex, GL_ARB_robustness, GL_ARB_sampler_objects, > GL_ARB_seamless_cube_map, GL_ARB_seamless_cubemap_per_texture, > GL_ARB_separate_shader_objects, GL_ARB_shader_atomic_counter_ops, > GL_ARB_shader_atomic_counters, GL_ARB_shader_bit_encoding, > GL_ARB_shader_image_load_store, GL_ARB_shader_image_size, > GL_ARB_shader_objects, GL_ARB_shader_stencil_export, > GL_ARB_shader_storage_buffer_object, GL_ARB_shader_subroutine, > GL_ARB_shader_texture_lod, GL_ARB_shading_language_420pack, > GL_ARB_shading_language_packing, GL_ARB_stencil_texturing, GL_ARB_sync, > GL_ARB_texture_buffer_object, GL_ARB_texture_buffer_object_rgb32, > GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map_array, > 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_stencil8, > GL_ARB_texture_storage, GL_ARB_texture_storage_multisample, > GL_ARB_texture_swizzle, GL_ARB_texture_view, GL_ARB_timer_query, > GL_ARB_transform_feedback2, GL_ARB_transform_feedback3, > GL_ARB_transform_feedback_instanced, GL_ARB_uniform_buffer_object, > GL_ARB_vertex_array_bgra, GL_ARB_vertex_array_object, > GL_ARB_vertex_attrib_64bit, GL_ARB_vertex_attrib_binding, > 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_ATI_texture_mirror_once, GL_EXT_abgr, GL_EXT_blend_equation_separate, > 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_sRGB, GL_EXT_packed_depth_stencil, GL_EXT_packed_float, > GL_EXT_pixel_buffer_object, GL_EXT_provoking_vertex, > 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_mirror_clamp, GL_EXT_texture_sRGB, > GL_EXT_texture_sRGB_decode, 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_KHR_context_flush_control, GL_KHR_debug, > GL_MESA_pack_invert, GL_MESA_shader_integer_functions, > GL_MESA_texture_signed_rgba, GL_MESA_ycbcr_texture, > GL_NV_conditional_render, GL_NV_depth_clamp, GL_NV_packed_depth_stencil, > GL_OES_EGL_image, GL_OES_read_format, GL_S3_s3tc > > OpenGL version string: 3.0 Mesa 13.0.2 > OpenGL shading language version string: 1.30 > OpenGL context flags: (none) > OpenGL extensions: > GL_AMD_conservative_depth, GL_AMD_draw_buffers_blend, > GL_AMD_seamless_cubemap_per_texture, GL_AMD_shader_stencil_export, > GL_AMD_shader_trinary_minmax, GL_ANGLE_texture_compression_dxt3, > GL_ANGLE_texture_compression_dxt5, GL_APPLE_packed_pixels, > GL_APPLE_vertex_array_object, GL_ARB_ES2_compatibility, > GL_ARB_ES3_compatibility, GL_ARB_arrays_of_arrays, GL_ARB_base_instance, > GL_ARB_blend_func_extended, GL_ARB_clear_buffer_object, > GL_ARB_clip_control, GL_ARB_color_buffer_float, > GL_ARB_compressed_texture_pixel_storage, GL_ARB_compute_shader, > GL_ARB_conditional_render_inverted, GL_ARB_conservative_depth, > 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_program, > GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader, > GL_ARB_framebuffer_no_attachments, 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_pipeline_statistics_query, GL_ARB_pixel_buffer_object, > GL_ARB_point_parameters, GL_ARB_point_sprite, > GL_ARB_program_interface_query, GL_ARB_provoking_vertex, > GL_ARB_robustness, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map, > GL_ARB_seamless_cubemap_per_texture, GL_ARB_separate_shader_objects, > GL_ARB_shader_atomic_counter_ops, GL_ARB_shader_atomic_counters, > GL_ARB_shader_bit_encoding, GL_ARB_shader_image_load_store, > GL_ARB_shader_image_size, GL_ARB_shader_objects, > GL_ARB_shader_stencil_export, GL_ARB_shader_storage_buffer_object, > GL_ARB_shader_texture_lod, GL_ARB_shading_language_100, > GL_ARB_shading_language_420pack, GL_ARB_shading_language_packing, > GL_ARB_shadow, GL_ARB_stencil_texturing, GL_ARB_sync, > 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_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_stencil8, GL_ARB_texture_storage, > GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle, > GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2, > GL_ARB_transform_feedback3, GL_ARB_transform_feedback_instanced, > 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_fragment_shader, GL_ATI_separate_stencil, > GL_ATI_texture_compression_3dc, GL_ATI_texture_env_combine3, > GL_ATI_texture_float, GL_ATI_texture_mirror_once, 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_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_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, GL_EXT_provoking_vertex, > GL_EXT_rescale_normal, GL_EXT_secondary_color, > GL_EXT_separate_specular_color, 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_latc, 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_mirror_clamp, > GL_EXT_texture_object, GL_EXT_texture_rectangle, GL_EXT_texture_sRGB, > GL_EXT_texture_sRGB_decode, 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_KHR_context_flush_control, GL_KHR_debug, GL_MESA_pack_invert, > GL_MESA_shader_integer_functions, GL_MESA_texture_signed_rgba, > GL_MESA_window_pos, GL_MESA_ycbcr_texture, 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_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 13.0.2 > 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_base_instance, > GL_EXT_blend_func_extended, GL_EXT_blend_minmax, > GL_EXT_clip_cull_distance, GL_EXT_color_buffer_float, GL_EXT_copy_image, > GL_EXT_discard_framebuffer, GL_EXT_draw_buffers, > GL_EXT_draw_buffers_indexed, GL_EXT_draw_elements_base_vertex, > GL_EXT_map_buffer_range, GL_EXT_multi_draw_arrays, > GL_EXT_read_format_bgra, GL_EXT_separate_shader_objects, > GL_EXT_shader_integer_mix, GL_EXT_texture_border_clamp, > GL_EXT_texture_compression_dxt1, GL_EXT_texture_filter_anisotropic, > GL_EXT_texture_format_BGRA8888, GL_EXT_texture_rg, > GL_EXT_texture_sRGB_decode, GL_EXT_texture_type_2_10_10_10_REV, > GL_EXT_unpack_subimage, GL_KHR_context_flush_control, GL_KHR_debug, > GL_MESA_shader_integer_functions, 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_sync, > GL_OES_compressed_ETC1_RGB8_texture, GL_OES_copy_image, 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_rgb8_rgba8, 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_texture_stencil8, GL_OES_vertex_array_object > > 240 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 > ---------------------------------------------------------------------------- > 0x021 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x022 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x1ab 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x1ac 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x1ad 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x1ae 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x1af 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x1b0 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x1b1 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x1b2 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x1b3 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x1b4 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x1b5 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x1b6 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x1b7 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x1b8 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x1b9 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x1ba 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x1bb 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x1bc 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x1bd 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x1be 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x1bf 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x1c0 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x1c1 24 tc 0 32 0 r . . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x1c2 24 tc 0 32 0 r . . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x1c3 24 tc 0 32 0 r y . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x1c4 24 tc 0 32 0 r y . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x1c5 24 tc 0 32 0 r y . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x1c6 24 tc 0 32 0 r y . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x1c7 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x1c8 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x1c9 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x1ca 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x1cb 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x1cc 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x1cd 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x1ce 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x1cf 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x1d0 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x1d1 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x1d2 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x1d3 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x1d4 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x1d5 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x1d6 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x1d7 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x1d8 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x1d9 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x1da 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x1db 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x1dc 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x1dd 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x1de 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x1df 24 tc 0 24 0 r . . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x1e0 24 tc 0 24 0 r . . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x1e1 24 tc 0 24 0 r y . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x1e2 24 tc 0 24 0 r y . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x1e3 24 tc 0 24 0 r y . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x1e4 24 tc 0 24 0 r y . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x1e5 24 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x1e6 24 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x1e7 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x1e8 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x1e9 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x1ea 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x1eb 24 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x1ec 24 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x1ed 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x1ee 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x1ef 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x1f0 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x1f1 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x1f2 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x1f3 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x1f4 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x1f5 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x1f6 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x1f7 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x1f8 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x1f9 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x1fa 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x1fb 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x1fc 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x1fd 24 tc 0 32 0 r . . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x1fe 24 tc 0 32 0 r . . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x1ff 24 tc 0 32 0 r y . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x200 24 tc 0 32 0 r y . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x201 24 tc 0 32 0 r y . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x202 24 tc 0 32 0 r y . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x203 24 tc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x204 24 tc 0 24 0 r . . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x205 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x206 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x207 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x208 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x209 24 tc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x20a 24 tc 0 24 0 r . . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x20b 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x20c 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x20d 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x20e 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x20f 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x210 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x211 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x212 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x213 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x214 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x215 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x216 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x217 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x218 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x219 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x21a 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x21b 24 tc 0 24 0 r . . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x21c 24 tc 0 24 0 r . . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x21d 24 tc 0 24 0 r y . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x21e 24 tc 0 24 0 r y . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x21f 24 tc 0 24 0 r y . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x220 24 tc 0 24 0 r y . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x221 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x222 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x223 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x224 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x225 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x226 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x227 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x228 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x229 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x22a 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x22b 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x22c 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x22d 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x22e 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x22f 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x230 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x231 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x232 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x233 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x234 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x235 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x236 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x237 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x238 24 dc 0 32 0 r . . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x239 24 dc 0 32 0 r . . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x23a 24 dc 0 32 0 r y . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x23b 24 dc 0 32 0 r y . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x23c 24 dc 0 32 0 r y . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x23d 24 dc 0 32 0 r y . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x23e 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x23f 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x240 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x241 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x242 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x243 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x244 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x245 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x246 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x247 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x248 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x249 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x24a 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x24b 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x24c 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x24d 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x24e 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x24f 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x250 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x251 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x252 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x253 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x254 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x255 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x256 24 dc 0 24 0 r . . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x257 24 dc 0 24 0 r . . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x258 24 dc 0 24 0 r y . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x259 24 dc 0 24 0 r y . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x25a 24 dc 0 24 0 r y . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x25b 24 dc 0 24 0 r y . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x25c 24 dc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x25d 24 dc 0 32 0 r . . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x25e 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x25f 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x260 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x261 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x262 24 dc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x263 24 dc 0 32 0 r . . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x264 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x265 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x266 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x267 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x268 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x269 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x26a 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x26b 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x26c 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x26d 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x26e 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x26f 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x270 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x271 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x272 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x273 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x274 24 dc 0 32 0 r . . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x275 24 dc 0 32 0 r . . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x276 24 dc 0 32 0 r y . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x277 24 dc 0 32 0 r y . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x278 24 dc 0 32 0 r y . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x279 24 dc 0 32 0 r y . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x27a 24 dc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x27b 24 dc 0 24 0 r . . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x27c 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x27d 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x27e 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x27f 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x280 24 dc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x281 24 dc 0 24 0 r . . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x282 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x283 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x284 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x285 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x286 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x287 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x288 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x289 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x28a 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x28b 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x28c 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x28d 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x28e 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x28f 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x290 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x291 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x292 24 dc 0 24 0 r . . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x293 24 dc 0 24 0 r . . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x294 24 dc 0 24 0 r y . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x295 24 dc 0 24 0 r y . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x296 24 dc 0 24 0 r y . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x297 24 dc 0 24 0 r y . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x07e 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > > 300 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 > ---------------------------------------------------------------------------- > 0x07f 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x080 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x081 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x082 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x083 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x084 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x085 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x086 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x087 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x088 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x089 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x08a 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x08b 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x08c 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x08d 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x08e 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x08f 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x090 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x091 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x092 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x093 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x094 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x095 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x096 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x097 24 tc 0 32 0 r . . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x098 24 tc 0 32 0 r . . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x099 24 tc 0 32 0 r y . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x09a 24 tc 0 32 0 r y . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x09b 24 tc 0 32 0 r y . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x09c 24 tc 0 32 0 r y . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 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 . . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x09f 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x0a0 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x0a1 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x0a2 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x0a3 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x0a4 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x0a5 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x0a6 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x0a7 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x0a8 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x0a9 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x0aa 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x0ab 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x0ac 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x0ad 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x0ae 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x0af 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x0b0 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x0b1 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x0b2 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x0b3 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x0b4 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x0b5 24 tc 0 24 0 r . . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x0b6 24 tc 0 24 0 r . . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x0b7 24 tc 0 24 0 r y . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x0b8 24 tc 0 24 0 r y . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x0b9 24 tc 0 24 0 r y . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x0ba 24 tc 0 24 0 r y . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x0bb 24 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x0bc 24 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x0bd 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x0be 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x0bf 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x0c0 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x0c1 24 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x0c2 24 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x0c3 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x0c4 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x0c5 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x0c6 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x0c7 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x0c8 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x0c9 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x0ca 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x0cb 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x0cc 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x0cd 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x0ce 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x0cf 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x0d0 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x0d1 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x0d2 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x0d3 24 tc 0 32 0 r . . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x0d4 24 tc 0 32 0 r . . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x0d5 24 tc 0 32 0 r y . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x0d6 24 tc 0 32 0 r y . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x0d7 24 tc 0 32 0 r y . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x0d8 24 tc 0 32 0 r y . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x0d9 24 tc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x0da 24 tc 0 24 0 r . . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x0db 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x0dc 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x0dd 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x0de 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x0df 24 tc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x0e0 24 tc 0 24 0 r . . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x0e1 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x0e2 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x0e3 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x0e4 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x0e5 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x0e6 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x0e7 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x0e8 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x0e9 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x0ea 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x0eb 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x0ec 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x0ed 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x0ee 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x0ef 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x0f0 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x0f1 24 tc 0 24 0 r . . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x0f2 24 tc 0 24 0 r . . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x0f3 24 tc 0 24 0 r y . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x0f4 24 tc 0 24 0 r y . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x0f5 24 tc 0 24 0 r y . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x0f6 24 tc 0 24 0 r y . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x0f7 0 tc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x0f8 0 tc 0 16 0 r . . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x0f9 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x0fa 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x0fb 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x0fc 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x0fd 0 tc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x0fe 0 tc 0 16 0 r . . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x0ff 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x100 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x101 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x102 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x103 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x104 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x105 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x106 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x107 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x108 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x109 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x10a 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x10b 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x10c 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x10d 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x10e 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x10f 0 tc 0 16 0 r . . 5 6 5 0 . . 0 32 0 0 0 0 0 0 0 None > 0x110 0 tc 0 16 0 r . . 5 6 5 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x111 0 tc 0 16 0 r y . 5 6 5 0 . . 0 32 0 0 0 0 0 0 0 None > 0x112 0 tc 0 16 0 r y . 5 6 5 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x113 0 tc 0 16 0 r y . 5 6 5 0 . . 0 32 0 0 0 0 0 0 0 None > 0x114 0 tc 0 16 0 r y . 5 6 5 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x115 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x116 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x117 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x118 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x119 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x11a 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x11b 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x11c 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x11d 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x11e 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x11f 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x120 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x121 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x122 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x123 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x124 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x125 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x126 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x127 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x128 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x129 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x12a 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x12b 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x12c 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x12d 24 dc 0 32 0 r . . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x12e 24 dc 0 32 0 r . . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x12f 24 dc 0 32 0 r y . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x130 24 dc 0 32 0 r y . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x131 24 dc 0 32 0 r y . 8 8 8 8 . . 0 32 0 0 0 0 0 0 0 None > 0x132 24 dc 0 32 0 r y . 8 8 8 8 . . 0 32 0 16 16 16 16 0 0 Slow > 0x133 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x134 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x135 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x136 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x137 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x138 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x139 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x13a 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x13b 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x13c 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x13d 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x13e 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x13f 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x140 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x141 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x142 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x143 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x144 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x145 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x146 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x147 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x148 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x149 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x14a 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x14b 24 dc 0 24 0 r . . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x14c 24 dc 0 24 0 r . . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x14d 24 dc 0 24 0 r y . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x14e 24 dc 0 24 0 r y . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x14f 24 dc 0 24 0 r y . 8 8 8 0 . . 0 32 0 0 0 0 0 0 0 None > 0x150 24 dc 0 24 0 r y . 8 8 8 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x151 24 dc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x152 24 dc 0 32 0 r . . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x153 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x154 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x155 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x156 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x157 24 dc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x158 24 dc 0 32 0 r . . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x159 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x15a 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x15b 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x15c 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x15d 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x15e 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x15f 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x160 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x161 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x162 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x163 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x164 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x165 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x166 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x167 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x168 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x169 24 dc 0 32 0 r . . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x16a 24 dc 0 32 0 r . . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x16b 24 dc 0 32 0 r y . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x16c 24 dc 0 32 0 r y . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x16d 24 dc 0 32 0 r y . 8 8 8 8 . s 0 32 0 0 0 0 0 0 0 None > 0x16e 24 dc 0 32 0 r y . 8 8 8 8 . s 0 32 0 16 16 16 16 0 0 Slow > 0x16f 24 dc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x170 24 dc 0 24 0 r . . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x171 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x172 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x173 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x174 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x175 24 dc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x176 24 dc 0 24 0 r . . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x177 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x178 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x179 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x17a 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x17b 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x17c 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x17d 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x17e 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x17f 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x180 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x181 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x182 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x183 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x184 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x185 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x186 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x187 24 dc 0 24 0 r . . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x188 24 dc 0 24 0 r . . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x189 24 dc 0 24 0 r y . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x18a 24 dc 0 24 0 r y . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x18b 24 dc 0 24 0 r y . 8 8 8 0 . s 0 32 0 0 0 0 0 0 0 None > 0x18c 24 dc 0 24 0 r y . 8 8 8 0 . s 0 32 0 16 16 16 0 0 0 Slow > 0x18d 0 dc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x18e 0 dc 0 16 0 r . . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x18f 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x190 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x191 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x192 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x193 0 dc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x194 0 dc 0 16 0 r . . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x195 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x196 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x197 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x198 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x199 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x19a 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x19b 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x19c 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x19d 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x19e 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x19f 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x1a0 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x1a1 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x1a2 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x1a3 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x1a4 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x1a5 0 dc 0 16 0 r . . 5 6 5 0 . . 0 32 0 0 0 0 0 0 0 None > 0x1a6 0 dc 0 16 0 r . . 5 6 5 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x1a7 0 dc 0 16 0 r y . 5 6 5 0 . . 0 32 0 0 0 0 0 0 0 None > 0x1a8 0 dc 0 16 0 r y . 5 6 5 0 . . 0 32 0 16 16 16 0 0 0 Slow > 0x1a9 0 dc 0 16 0 r y . 5 6 5 0 . . 0 32 0 0 0 0 0 0 0 None > 0x1aa 0 dc 0 16 0 r y . 5 6 5 0 . . 0 32 0 16 16 16 0 0 0 Slow > > > lspci: > 00:00.0 RAM memory: NVIDIA Corporation MCP78S [GeForce 8200] Memory > Controller (rev a2) > 00:01.0 ISA bridge: NVIDIA Corporation MCP78S [GeForce 8200] LPC Bridge (rev a2) > 00:01.1 SMBus: NVIDIA Corporation MCP78S [GeForce 8200] SMBus (rev a1) > 00:01.2 RAM memory: NVIDIA Corporation MCP78S [GeForce 8200] Memory > Controller (rev a1) > 00:01.3 Co-processor: NVIDIA Corporation MCP78S [GeForce 8200] > Co-Processor (rev a2) > 00:01.4 RAM memory: NVIDIA Corporation MCP78S [GeForce 8200] Memory > Controller (rev a1) > 00:02.0 USB controller: NVIDIA Corporation MCP78S [GeForce 8200] OHCI > USB 1.1 Controller (rev a1) > 00:02.1 USB controller: NVIDIA Corporation MCP78S [GeForce 8200] EHCI > USB 2.0 Controller (rev a1) > 00:04.0 USB controller: NVIDIA Corporation MCP78S [GeForce 8200] OHCI > USB 1.1 Controller (rev a1) > 00:04.1 USB controller: NVIDIA Corporation MCP78S [GeForce 8200] EHCI > USB 2.0 Controller (rev a1) > 00:06.0 IDE interface: NVIDIA Corporation MCP78S [GeForce 8200] IDE (rev a1) > 00:07.0 Audio device: NVIDIA Corporation MCP72XE/MCP72P/MCP78U/MCP78S > High Definition Audio (rev a1) > 00:08.0 PCI bridge: NVIDIA Corporation MCP78S [GeForce 8200] PCI Bridge (rev a1) > 00:09.0 IDE interface: NVIDIA Corporation MCP78S [GeForce 8200] SATA > Controller (non-AHCI mode) (rev a2) > 00:0a.0 Ethernet controller: NVIDIA Corporation MCP77 Ethernet (rev a2) > 00:10.0 PCI bridge: NVIDIA Corporation MCP78S [GeForce 8200] PCI > Express Bridge (rev a1) > 00:13.0 PCI bridge: NVIDIA Corporation MCP78S [GeForce 8200] PCI Bridge (rev a1) > 00:14.0 PCI bridge: NVIDIA Corporation MCP78S [GeForce 8200] PCI Bridge (rev a1) > 00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 10h > Processor HyperTransport Configuration > 00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 10h > Processor Address Map > 00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 10h > Processor DRAM Controller > 00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 10h > Processor Miscellaneous Control > 00:18.4 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 10h > Processor Link Control > 01:0a.0 FireWire (IEEE 1394): VIA Technologies, Inc. VT6306/7/8 [Fire > II(M)] IEEE 1394 OHCI Controller (rev c0) > 02:00.0 PCI bridge: NVIDIA Corporation NF200 PCIe 2.0 switch (rev a2) > 03:00.0 PCI bridge: NVIDIA Corporation NF200 PCIe 2.0 switch (rev a2) > 03:02.0 PCI bridge: NVIDIA Corporation NF200 PCIe 2.0 switch (rev a2) > 04:00.0 VGA compatible controller: NVIDIA Corporation GP106 [GeForce > GTX 1060 6GB] (rev a1) > 04:00.1 Audio device: NVIDIA Corporation Device 10f1 (rev a1) >