[Piglit] V2: Testing request for Nvidia owners KHR_debug and ARB_debug_ouput interaction
Fabian Bieler
fabianbieler at fastmail.fm
Sun Mar 2 01:53:43 PST 2014
It seems nvidia just aliased DebugInsertMessage, as well.
On 2014-03-02 04:28, Timothy Arceri wrote:
> Hi guys, I don't own a Nvidia card and I'm interested in how the binary driver treats interactions
> between these two extension. This is a modified version of my KHR_debug push/pop test with
> ARB_debug_ouput calls mixed in that should let me know how they interact.
> I would be greatful if someone could run this on the Nvidia binary and send me the results in
> the main output file.
>
> FYI I've run this on Catalyst and it seems AMD just uses an alias and shares the similar functions.
>
> Thanks
> Tim
>
> V2: Test DebugMessageControlARB() with KHR_debug type, and GetDebugMessageLogARB() with
> push/pop types
> ---
> tests/all.py | 1 +
> tests/spec/khr_debug/CMakeLists.gl.txt | 1 +
> tests/spec/khr_debug/debug-push-pop-group.c | 293 +++++++++++++++++++++++++++
> 3 files changed, 295 insertions(+)
> create mode 100644 tests/spec/khr_debug/debug-push-pop-group.c
>
> diff --git a/tests/all.py b/tests/all.py
> index 590c832..93e38b3 100644
> --- a/tests/all.py
> +++ b/tests/all.py
> @@ -1835,6 +1835,7 @@ add_plain_test(arb_debug_output, 'arb_debug_output-api_error')
> khr_debug = Group()
> spec['KHR_debug'] = khr_debug
> khr_debug['object-label'] = concurrent_test('khr_debug-object-label')
> +khr_debug['push-pop-group'] = concurrent_test('khr_debug-push-pop-group')
>
> # Group ARB_occlusion_query2
> arb_occlusion_query2 = Group()
> diff --git a/tests/spec/khr_debug/CMakeLists.gl.txt b/tests/spec/khr_debug/CMakeLists.gl.txt
> index b0079df..f7b32bd 100644
> --- a/tests/spec/khr_debug/CMakeLists.gl.txt
> +++ b/tests/spec/khr_debug/CMakeLists.gl.txt
> @@ -10,5 +10,6 @@ link_libraries (
> )
>
> piglit_add_executable (khr_debug-object-label debug-object-label.c)
> +piglit_add_executable (khr_debug-push-pop-group debug-push-pop-group.c)
>
> # vim: ft=cmake:
> diff --git a/tests/spec/khr_debug/debug-push-pop-group.c b/tests/spec/khr_debug/debug-push-pop-group.c
> new file mode 100644
> index 0000000..fbfdf85
> --- /dev/null
> +++ b/tests/spec/khr_debug/debug-push-pop-group.c
> @@ -0,0 +1,293 @@
> +/*
> + * Copyright (c) 2013 Timothy Arceri <t_arceri at yahoo.com.au>
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * on the rights to use, copy, modify, merge, publish, distribute, sub
> + * license, and/or sell copies of the Software, and to permit persons to whom
> + * the Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice (including the next
> + * paragraph) shall be included in all copies or substantial portions of the
> + * Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
> + * NON-INFRINGEMENT. IN NO EVENT SHALL AUTHORS AND/OR THEIR SUPPLIERS
> + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
> + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
> + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> + * SOFTWARE.
> + */
> +
> +#include "piglit-util-gl-common.h"
> +
> +static const char *TestMessage1 = "Piglit Message 1";
> +static const char *TestMessage2 = "Piglit Message 2";
> +static const char *TestMessage3 = "Piglit Message 3";
> +static const char *TestMessage4 = "Piglit Message 4";
> +
> +static const int MessageId1 = 101;
> +static const int MessageId2 = 202;
> +static const int MessageId3 = 303;
> +static const int MessageId4 = 404;
> +
> +PIGLIT_GL_TEST_CONFIG_BEGIN
> +
> + config.supports_gl_compat_version = 11;
> + config.require_debug_context = true;
> +
> + config.window_visual = PIGLIT_GL_VISUAL_RGBA | PIGLIT_GL_VISUAL_DOUBLE;
> +
> +PIGLIT_GL_TEST_CONFIG_END
> +
> +enum piglit_result
> +piglit_display(void)
> +{
> + return PIGLIT_PASS;
> +}
> +
> +static GLboolean fetch_one_log_message()
> +{
> + char log[4096];
> + GLboolean ret =
> + !!glGetDebugMessageLogARB(1, 4096, NULL, NULL, NULL, NULL, NULL, log);
> +
> + if (ret) {
> + printf("Log: %s\n", log);
> + }
> + return ret;
> +}
> +
> +static bool check_inheritance_messages(int expectedCount, GLuint* expectedIds)
> +{
> + bool pass = true;
> + int max_messages = 5;
> + int bufSize = 1280;
> + int i;
> + GLuint count;
> + GLenum types[max_messages];
> + GLuint ids[max_messages];
> +
> + GLchar messageLog[bufSize];
> +
> + count = glGetDebugMessageLogARB(max_messages,
> + bufSize,
> + NULL,
> + types,
> + ids,
> + NULL,
> + NULL,
> + messageLog);
> +
> + if (count != expectedCount) {
> + fprintf(stderr, "Expected message count: %i Actual message count: %i\n",
> + expectedCount, count);
> + pass = false;
> + } else {
> + for (i = 0; i < expectedCount; i++) {
> + printf("Type: %x", types[i]);
> + if (expectedIds[i] != ids[i]) {
> + fprintf(stderr, "Expected id: %i Actual id: %i\n",
> + expectedIds[i], ids[i]);
> + pass = false;
> + }
> + }
> + }
> +
> + return pass;
> +}
> +
> +static void insert_inheritance_messages()
> +{
> + glDebugMessageInsert(GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_MARKER, MessageId1,
> + GL_DEBUG_SEVERITY_NOTIFICATION, -1, TestMessage1);
> +
> + glDebugMessageInsert(GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_MARKER, MessageId2,
> + GL_DEBUG_SEVERITY_NOTIFICATION, -1, TestMessage2);
> +
> + glDebugMessageInsertARB(GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_MARKER, MessageId3,
> + GL_DEBUG_SEVERITY_NOTIFICATION, -1, TestMessage3);
> +
> + glDebugMessageInsert(GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_MARKER, MessageId4,
> + GL_DEBUG_SEVERITY_NOTIFICATION, -1, TestMessage4);
> +}
> +
> +/*
> + * Test inheritance of group filtering (nesting)
> + */
> +static bool test_push_pop_group_inheritance()
> +{
> + bool pass = true;
> + GLuint allowedIds1[] = {MessageId1};
> + GLuint allowedIds2[] = {MessageId2};
> + GLuint allowedIds3[] = {MessageId3};
> +
> + GLuint expectedIds1[] = {MessageId1};
> + GLuint expectedIds2[] = {MessageId1, MessageId2};
> + GLuint expectedIds3[] = {MessageId1, MessageId2, MessageId3};
> +
> + puts("Testing Push debug group inheritance");
> +
> + /* Setup of the default active debug group: Filter everything out */
> + glDebugMessageControl(GL_DONT_CARE, GL_DONT_CARE,
> + GL_DONT_CARE, 0, NULL, GL_FALSE);
> +
> + /* Push debug group 1 and allow messages with the id 101*/
> + glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 1, 11, "Push_Pop 1");
> + glDebugMessageControlARB(GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_MARKER,
> + GL_DONT_CARE, 1, allowedIds1, GL_TRUE);
> + insert_inheritance_messages();
> + pass = check_inheritance_messages(1, expectedIds1);
> +
> + /* Push debug group 1 and allow messages with the id 101 and 202*/
> + glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 1, 11, "Push_Pop 2");
> + glDebugMessageControl(GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_MARKER,
> + GL_DONT_CARE, 1, allowedIds2, GL_TRUE);
> + insert_inheritance_messages();
> + pass = check_inheritance_messages(2, expectedIds2) && pass;
> +
> + /* Push debug group 1 and allow messages with the id 101, 202 and 303*/
> + glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 1, 11, "Push_Pop 3");
> + glDebugMessageControl(GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_MARKER,
> + GL_DONT_CARE, 1, allowedIds3, GL_TRUE);
> + insert_inheritance_messages();
> + pass = check_inheritance_messages(3, expectedIds3) && pass;
> +
> + puts("Testing Pop debug group inheritance");
> +
> + /* Pop debug group 3 */
> + glPopDebugGroup();
> + insert_inheritance_messages();
> + pass = check_inheritance_messages(2, expectedIds2) && pass;
> +
> + /* Pop debug group 2 */
> + glPopDebugGroup();
> + insert_inheritance_messages();
> + pass = check_inheritance_messages(1, expectedIds1) && pass;
> +
> + /* Pop group 1, restore the volume control of the default debug group. */
> + glPopDebugGroup();
> + insert_inheritance_messages();
> +
> + if (fetch_one_log_message()) {
> + fprintf(stderr, "The message log should be empty\n");
> + pass = false;
> + }
> +
> + return pass;
> +}
> +
> +/*
> + * Test Push/Pop Debug Group
> + */
> +static bool test_push_pop_debug_group()
> +{
> + bool pass = true;
> + int max_messages = 5;
> + int bufSize = 1280;
> + GLuint count;
> +
> + GLsizei lengths[max_messages];
> + GLchar messageLog[bufSize];
> +
> + puts("Testing Push Pop debug message group");
> +
> + /* Setup of the default active debug group: Filter everything in */
> + glDebugMessageControl(GL_DONT_CARE, GL_DONT_CARE, GL_DONT_CARE,
> + 0, NULL, GL_TRUE);
> +
> + /* Generate a debug marker debug output message */
> + glDebugMessageInsertARB(GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_MARKER, MessageId1,
> + GL_DEBUG_SEVERITY_NOTIFICATION, -1, TestMessage1);
> +
> + /* Push debug group 1 */
> + glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 1, 17, TestMessage2);
> +
> + /* Setup of the debug group 1: Filter everything out */
> + glDebugMessageControl(GL_DONT_CARE, GL_DONT_CARE, GL_DONT_CARE,
> + 0, NULL, GL_FALSE);
> +
> + /* This message shouldn't appear in the debug output log */
> + glDebugMessageInsert(GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_MARKER, MessageId1,
> + GL_DEBUG_SEVERITY_NOTIFICATION, -1, TestMessage3);
> +
> + /* Pop group 1, restore the volume control of the default debug group. */
> + glPopDebugGroup();
> +
> + /* Generate a debug marker debug output message */
> + glDebugMessageInsert(GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_MARKER, MessageId1,
> + GL_DEBUG_SEVERITY_NOTIFICATION, -1, TestMessage4);
> +
> + /* Check that message log has done correct filtering */
> + count = glGetDebugMessageLog(max_messages,
> + bufSize,
> + NULL,
> + NULL,
> + NULL,
> + NULL,
> + lengths,
> + messageLog);
> +
> + if (count != 4) {
> + fprintf(stderr, "The message log should contain 4 messages not %i messages\n", count);
> + pass = false;
> + int nextMessage = lengths[0];
> + if (strcmp(TestMessage2, messageLog+nextMessage) != 0) {
> + fprintf(stderr, "Expected: %s Message: %s\n", TestMessage2, messageLog+nextMessage);
> + pass = false;
> + }
> + }
> +
> + if (pass) {
> + int i;
> +
> + /* the thrid message should be TestMessage2 from glPopDebugGroup() */
> + int nextMessage = lengths[0] + lengths[1];
> + if (strcmp(TestMessage2, messageLog+nextMessage) != 0) {
> + fprintf(stderr, "Expected: %s Message: %s\n", TestMessage2, messageLog+nextMessage);
> + pass = false;
> + }
> +
> + /* double check that TestMessage3 didnt sneak into the list */
> + nextMessage = 0;
> + for (i = 0; i < count; i++) {
> + if (strcmp(TestMessage3, messageLog+nextMessage) == 0) {
> + fprintf(stderr, "The log should not contain the message: %s",
> + messageLog+nextMessage);
> + pass = false;
> + }
> + nextMessage += lengths[i];
> + }
> +
> + /* the forth message should be TestMessage4 */
> + nextMessage = lengths[0] + lengths[1] + lengths[3];
> + if (strcmp(TestMessage4, messageLog+nextMessage) != 0) {
> + fprintf(stderr, "Expected: %s Message: %s\n", TestMessage4, messageLog+nextMessage);
> + pass = false;
> + }
> + }
> +
> + return pass;
> +}
> +
> +void piglit_init(int argc, char **argv)
> +{
> + bool pass = true;
> +
> + piglit_require_extension("GL_KHR_debug");
> +
> + glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS);
> + glEnable(GL_DEBUG_OUTPUT);
> +
> + if (!piglit_check_gl_error(GL_NO_ERROR))
> + piglit_report_result(PIGLIT_FAIL);
> +
> + /* test message control and debug groups */
> + pass = test_push_pop_debug_group();
> + pass = test_push_pop_group_inheritance() && pass;
> +
> + piglit_report_result(pass ? PIGLIT_PASS : PIGLIT_FAIL);
> +}
>
-------------- next part --------------
{
"options": {
"profile": [
"tests/all.py"
],
"dmesg": false,
"execute": true,
"verbose": false,
"valgrind": false,
"filter": [
"push-pop-group"
],
"concurrent": "some",
"exclude_tests": [],
"exclude_filter": []
},
"name": "khr_debug-push-pop-group.results",
"lspci": "00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller (rev 09)\n00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09)\n00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller (rev 09)\n00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)\n00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)\n00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)\n00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4)\n00:1c.4 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 5 (rev c4)\n00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)\n00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a4)\n00:1f.0 ISA bridge: Intel Corporation B75 Express Chipset LPC Controller (rev 04)\n00:1f.2 SATA controller: Intel Corporation 7 Series/C210 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)\n00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)\n01:00.0 VGA compatible controller: NVIDIA Corporation GK104 [GeForce GTX 660 Ti] (rev a1)\n01:00.1 Audio device: NVIDIA Corporation GK104 HDMI Audio Controller (rev a1)\n03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 09)\n04:00.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 0a)\n04:00.1 Input device controller: Creative Labs SB Live! Game Port (rev 0a)\n",
"glxinfo": "name of display: :0\ndisplay: :0 screen: 0\ndirect rendering: Yes\nserver glx vendor string: NVIDIA Corporation\nserver glx version string: 1.4\nserver glx extensions:\n GLX_ARB_create_context, GLX_ARB_create_context_profile, \n GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, \n GLX_ARB_multisample, GLX_EXT_buffer_age, \n GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, \n GLX_EXT_framebuffer_sRGB, GLX_EXT_swap_control, GLX_EXT_swap_control_tear, \n GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, \n GLX_NV_float_buffer, GLX_NV_multisample_coverage, GLX_SGIX_fbconfig, \n GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync\nclient glx vendor string: NVIDIA Corporation\nclient glx version string: 1.4\nclient glx extensions:\n GLX_ARB_create_context, GLX_ARB_create_context_profile, \n GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, \n GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age, \n GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, \n GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, \n GLX_EXT_import_context, GLX_EXT_swap_control, GLX_EXT_swap_control_tear, \n GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, \n GLX_NV_copy_image, GLX_NV_float_buffer, GLX_NV_multisample_coverage, \n GLX_NV_present_video, GLX_NV_swap_group, GLX_NV_video_capture, \n GLX_NV_video_out, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, \n GLX_SGI_swap_control, GLX_SGI_video_sync\nGLX version: 1.4\nGLX extensions:\n GLX_ARB_create_context, GLX_ARB_create_context_profile, \n GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, \n GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age, \n GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, \n GLX_EXT_framebuffer_sRGB, GLX_EXT_swap_control, GLX_EXT_swap_control_tear, \n GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, \n GLX_NV_float_buffer, GLX_NV_multisample_coverage, GLX_SGIX_fbconfig, \n GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync\nOpenGL vendor string: NVIDIA Corporation\nOpenGL renderer string: GeForce GTX 660 Ti/PCIe/SSE2\nOpenGL core profile version string: 4.3.0 NVIDIA 319.32\nOpenGL core profile shading language version string: 4.30 NVIDIA via Cg compiler\nOpenGL core profile context flags: (none)\nOpenGL core profile profile mask: core profile\nOpenGL core profile extensions:\n GL_AMD_multi_draw_indirect, GL_AMD_seamless_cubemap_per_texture, \n GL_ARB_ES2_compatibility, GL_ARB_ES3_compatibility, \n GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended, \n GL_ARB_clear_buffer_object, GL_ARB_color_buffer_float, \n GL_ARB_compressed_texture_pixel_storage, GL_ARB_compute_shader, \n GL_ARB_conservative_depth, GL_ARB_copy_buffer, GL_ARB_copy_image, \n GL_ARB_debug_output, GL_ARB_depth_buffer_float, GL_ARB_depth_clamp, \n GL_ARB_depth_texture, GL_ARB_draw_buffers, GL_ARB_draw_buffers_blend, \n GL_ARB_draw_elements_base_vertex, GL_ARB_draw_indirect, \n GL_ARB_draw_instanced, GL_ARB_explicit_attrib_location, \n GL_ARB_explicit_uniform_location, GL_ARB_fragment_coord_conventions, \n GL_ARB_fragment_layer_viewport, GL_ARB_fragment_program, \n GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader, \n GL_ARB_framebuffer_no_attachments, GL_ARB_framebuffer_object, \n GL_ARB_framebuffer_sRGB, GL_ARB_geometry_shader4, \n GL_ARB_get_program_binary, GL_ARB_gpu_shader5, GL_ARB_gpu_shader_fp64, \n GL_ARB_half_float_pixel, GL_ARB_half_float_vertex, GL_ARB_imaging, \n GL_ARB_instanced_arrays, GL_ARB_internalformat_query, \n GL_ARB_internalformat_query2, GL_ARB_invalidate_subdata, \n GL_ARB_map_buffer_alignment, GL_ARB_map_buffer_range, \n GL_ARB_multi_draw_indirect, GL_ARB_multisample, GL_ARB_multitexture, \n GL_ARB_occlusion_query, GL_ARB_occlusion_query2, \n GL_ARB_pixel_buffer_object, GL_ARB_point_parameters, GL_ARB_point_sprite, \n GL_ARB_program_interface_query, GL_ARB_provoking_vertex, \n GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness, \n GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map, \n GL_ARB_separate_shader_objects, GL_ARB_shader_atomic_counters, \n GL_ARB_shader_bit_encoding, GL_ARB_shader_image_load_store, \n GL_ARB_shader_image_size, GL_ARB_shader_objects, GL_ARB_shader_precision, \n GL_ARB_shader_storage_buffer_object, GL_ARB_shader_subroutine, \n GL_ARB_shader_texture_lod, GL_ARB_shading_language_100, \n GL_ARB_shading_language_420pack, GL_ARB_shading_language_include, \n GL_ARB_shading_language_packing, GL_ARB_shadow, GL_ARB_stencil_texturing, \n GL_ARB_sync, GL_ARB_tessellation_shader, GL_ARB_texture_border_clamp, \n GL_ARB_texture_buffer_object, GL_ARB_texture_buffer_object_rgb32, \n GL_ARB_texture_buffer_range, GL_ARB_texture_compression, \n GL_ARB_texture_compression_bptc, GL_ARB_texture_compression_rgtc, \n GL_ARB_texture_cube_map, GL_ARB_texture_cube_map_array, \n GL_ARB_texture_env_add, GL_ARB_texture_env_combine, \n GL_ARB_texture_env_crossbar, GL_ARB_texture_env_dot3, \n GL_ARB_texture_float, GL_ARB_texture_gather, \n GL_ARB_texture_mirrored_repeat, GL_ARB_texture_multisample, \n GL_ARB_texture_non_power_of_two, GL_ARB_texture_query_levels, \n GL_ARB_texture_query_lod, GL_ARB_texture_rectangle, GL_ARB_texture_rg, \n GL_ARB_texture_rgb10_a2ui, GL_ARB_texture_storage, \n GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle, \n GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2, \n GL_ARB_transform_feedback3, GL_ARB_transform_feedback_instanced, \n GL_ARB_transpose_matrix, GL_ARB_uniform_buffer_object, \n GL_ARB_vertex_array_bgra, GL_ARB_vertex_array_object, \n GL_ARB_vertex_attrib_64bit, GL_ARB_vertex_attrib_binding, \n GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader, \n GL_ARB_vertex_type_2_10_10_10_rev, GL_ARB_viewport_array, \n GL_ARB_window_pos, GL_ATI_draw_buffers, GL_ATI_texture_float, \n GL_ATI_texture_mirror_once, GL_EXTX_framebuffer_mixed_formats, \n GL_EXT_Cg_shader, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_bindable_uniform, \n GL_EXT_blend_color, GL_EXT_blend_equation_separate, \n GL_EXT_blend_func_separate, GL_EXT_blend_minmax, GL_EXT_blend_subtract, \n GL_EXT_compiled_vertex_array, GL_EXT_depth_bounds_test, \n GL_EXT_direct_state_access, GL_EXT_draw_buffers2, GL_EXT_draw_instanced, \n GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_framebuffer_blit, \n GL_EXT_framebuffer_multisample, GL_EXT_framebuffer_multisample_blit_scaled, \n GL_EXT_framebuffer_object, GL_EXT_framebuffer_sRGB, \n GL_EXT_geometry_shader4, GL_EXT_gpu_program_parameters, \n GL_EXT_gpu_shader4, GL_EXT_import_sync_object, GL_EXT_multi_draw_arrays, \n GL_EXT_packed_depth_stencil, GL_EXT_packed_float, GL_EXT_packed_pixels, \n GL_EXT_pixel_buffer_object, GL_EXT_point_parameters, \n GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color, \n GL_EXT_separate_shader_objects, GL_EXT_separate_specular_color, \n GL_EXT_shader_image_load_store, GL_EXT_shadow_funcs, \n GL_EXT_stencil_two_side, GL_EXT_stencil_wrap, GL_EXT_texture3D, \n GL_EXT_texture_array, GL_EXT_texture_buffer_object, \n GL_EXT_texture_compression_dxt1, GL_EXT_texture_compression_latc, \n GL_EXT_texture_compression_rgtc, GL_EXT_texture_compression_s3tc, \n GL_EXT_texture_cube_map, GL_EXT_texture_edge_clamp, \n GL_EXT_texture_env_add, GL_EXT_texture_env_combine, \n GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic, \n GL_EXT_texture_integer, GL_EXT_texture_lod, GL_EXT_texture_lod_bias, \n GL_EXT_texture_mirror_clamp, GL_EXT_texture_object, GL_EXT_texture_sRGB, \n GL_EXT_texture_sRGB_decode, GL_EXT_texture_shared_exponent, \n GL_EXT_texture_storage, GL_EXT_texture_swizzle, GL_EXT_timer_query, \n GL_EXT_transform_feedback2, GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, \n GL_EXT_vertex_attrib_64bit, GL_EXT_x11_sync_object, GL_IBM_rasterpos_clip, \n GL_IBM_texture_mirrored_repeat, GL_KHR_debug, GL_KTX_buffer_region, \n GL_NVX_conditional_render, GL_NVX_gpu_memory_info, GL_NVX_nvenc_interop, \n GL_NV_ES1_1_compatibility, GL_NV_bindless_texture, GL_NV_blend_square, \n GL_NV_compute_program5, GL_NV_conditional_render, \n GL_NV_copy_depth_to_color, GL_NV_copy_image, GL_NV_depth_buffer_float, \n GL_NV_depth_clamp, GL_NV_draw_texture, GL_NV_explicit_multisample, \n GL_NV_fence, GL_NV_float_buffer, GL_NV_fog_distance, \n GL_NV_fragment_program, GL_NV_fragment_program2, \n GL_NV_fragment_program_option, GL_NV_framebuffer_multisample_coverage, \n GL_NV_geometry_shader4, GL_NV_gpu_program4, GL_NV_gpu_program4_1, \n GL_NV_gpu_program5, GL_NV_gpu_program5_mem_extended, \n GL_NV_gpu_program_fp64, GL_NV_gpu_shader5, GL_NV_half_float, \n GL_NV_light_max_exponent, GL_NV_multisample_coverage, \n GL_NV_multisample_filter_hint, GL_NV_occlusion_query, \n GL_NV_packed_depth_stencil, GL_NV_parameter_buffer_object, \n GL_NV_parameter_buffer_object2, GL_NV_path_rendering, \n GL_NV_pixel_data_range, GL_NV_point_sprite, GL_NV_primitive_restart, \n GL_NV_register_combiners, GL_NV_register_combiners2, \n GL_NV_shader_atomic_counters, GL_NV_shader_atomic_float, \n GL_NV_shader_buffer_load, GL_NV_shader_storage_buffer_object, \n GL_NV_texgen_reflection, GL_NV_texture_barrier, \n GL_NV_texture_compression_vtc, GL_NV_texture_env_combine4, \n GL_NV_texture_expand_normal, GL_NV_texture_multisample, \n GL_NV_texture_rectangle, GL_NV_texture_shader, GL_NV_texture_shader2, \n GL_NV_texture_shader3, GL_NV_transform_feedback, \n GL_NV_transform_feedback2, GL_NV_vdpau_interop, GL_NV_vertex_array_range, \n GL_NV_vertex_array_range2, GL_NV_vertex_attrib_integer_64bit, \n GL_NV_vertex_buffer_unified_memory, GL_NV_vertex_program, \n GL_NV_vertex_program1_1, GL_NV_vertex_program2, \n GL_NV_vertex_program2_option, GL_NV_vertex_program3, GL_S3_s3tc, \n GL_SGIS_generate_mipmap, GL_SGIS_texture_lod, GL_SGIX_depth_texture, \n GL_SGIX_shadow, GL_SUN_slice_accum\n\nOpenGL version string: 4.3.0 NVIDIA 319.32\nOpenGL shading language version string: 4.30 NVIDIA via Cg compiler\nOpenGL context flags: (none)\nOpenGL profile mask: (none)\nOpenGL extensions:\n GL_AMD_multi_draw_indirect, GL_AMD_seamless_cubemap_per_texture, \n GL_ARB_ES2_compatibility, GL_ARB_ES3_compatibility, \n GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended, \n GL_ARB_clear_buffer_object, GL_ARB_color_buffer_float, \n GL_ARB_compatibility, GL_ARB_compressed_texture_pixel_storage, \n GL_ARB_compute_shader, GL_ARB_conservative_depth, GL_ARB_copy_buffer, \n GL_ARB_copy_image, GL_ARB_debug_output, GL_ARB_depth_buffer_float, \n GL_ARB_depth_clamp, GL_ARB_depth_texture, GL_ARB_draw_buffers, \n GL_ARB_draw_buffers_blend, GL_ARB_draw_elements_base_vertex, \n GL_ARB_draw_indirect, GL_ARB_draw_instanced, \n GL_ARB_explicit_attrib_location, GL_ARB_explicit_uniform_location, \n GL_ARB_fragment_coord_conventions, GL_ARB_fragment_layer_viewport, \n GL_ARB_fragment_program, GL_ARB_fragment_program_shadow, \n GL_ARB_fragment_shader, GL_ARB_framebuffer_no_attachments, \n GL_ARB_framebuffer_object, GL_ARB_framebuffer_sRGB, \n GL_ARB_geometry_shader4, GL_ARB_get_program_binary, GL_ARB_gpu_shader5, \n GL_ARB_gpu_shader_fp64, GL_ARB_half_float_pixel, GL_ARB_half_float_vertex, \n GL_ARB_imaging, GL_ARB_instanced_arrays, GL_ARB_internalformat_query, \n GL_ARB_internalformat_query2, GL_ARB_invalidate_subdata, \n GL_ARB_map_buffer_alignment, GL_ARB_map_buffer_range, \n GL_ARB_multi_draw_indirect, GL_ARB_multisample, GL_ARB_multitexture, \n GL_ARB_occlusion_query, GL_ARB_occlusion_query2, \n GL_ARB_pixel_buffer_object, GL_ARB_point_parameters, GL_ARB_point_sprite, \n GL_ARB_program_interface_query, GL_ARB_provoking_vertex, \n GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness, \n GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map, \n GL_ARB_separate_shader_objects, GL_ARB_shader_atomic_counters, \n GL_ARB_shader_bit_encoding, GL_ARB_shader_image_load_store, \n GL_ARB_shader_image_size, GL_ARB_shader_objects, GL_ARB_shader_precision, \n GL_ARB_shader_storage_buffer_object, GL_ARB_shader_subroutine, \n GL_ARB_shader_texture_lod, GL_ARB_shading_language_100, \n GL_ARB_shading_language_420pack, GL_ARB_shading_language_include, \n GL_ARB_shading_language_packing, GL_ARB_shadow, GL_ARB_stencil_texturing, \n GL_ARB_sync, GL_ARB_tessellation_shader, GL_ARB_texture_border_clamp, \n GL_ARB_texture_buffer_object, GL_ARB_texture_buffer_object_rgb32, \n GL_ARB_texture_buffer_range, GL_ARB_texture_compression, \n GL_ARB_texture_compression_bptc, GL_ARB_texture_compression_rgtc, \n GL_ARB_texture_cube_map, GL_ARB_texture_cube_map_array, \n GL_ARB_texture_env_add, GL_ARB_texture_env_combine, \n GL_ARB_texture_env_crossbar, GL_ARB_texture_env_dot3, \n GL_ARB_texture_float, GL_ARB_texture_gather, \n GL_ARB_texture_mirrored_repeat, GL_ARB_texture_multisample, \n GL_ARB_texture_non_power_of_two, GL_ARB_texture_query_levels, \n GL_ARB_texture_query_lod, GL_ARB_texture_rectangle, GL_ARB_texture_rg, \n GL_ARB_texture_rgb10_a2ui, GL_ARB_texture_storage, \n GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle, \n GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2, \n GL_ARB_transform_feedback3, GL_ARB_transform_feedback_instanced, \n GL_ARB_transpose_matrix, GL_ARB_uniform_buffer_object, \n GL_ARB_vertex_array_bgra, GL_ARB_vertex_array_object, \n GL_ARB_vertex_attrib_64bit, GL_ARB_vertex_attrib_binding, \n GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader, \n GL_ARB_vertex_type_2_10_10_10_rev, GL_ARB_viewport_array, \n GL_ARB_window_pos, GL_ATI_draw_buffers, GL_ATI_texture_float, \n GL_ATI_texture_mirror_once, GL_EXTX_framebuffer_mixed_formats, \n GL_EXT_Cg_shader, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_bindable_uniform, \n GL_EXT_blend_color, GL_EXT_blend_equation_separate, \n GL_EXT_blend_func_separate, GL_EXT_blend_minmax, GL_EXT_blend_subtract, \n GL_EXT_compiled_vertex_array, GL_EXT_depth_bounds_test, \n GL_EXT_direct_state_access, GL_EXT_draw_buffers2, GL_EXT_draw_instanced, \n GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_framebuffer_blit, \n GL_EXT_framebuffer_multisample, GL_EXT_framebuffer_multisample_blit_scaled, \n GL_EXT_framebuffer_object, GL_EXT_framebuffer_sRGB, \n GL_EXT_geometry_shader4, GL_EXT_gpu_program_parameters, \n GL_EXT_gpu_shader4, GL_EXT_import_sync_object, GL_EXT_multi_draw_arrays, \n GL_EXT_packed_depth_stencil, GL_EXT_packed_float, GL_EXT_packed_pixels, \n GL_EXT_pixel_buffer_object, GL_EXT_point_parameters, \n GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color, \n GL_EXT_separate_shader_objects, GL_EXT_separate_specular_color, \n GL_EXT_shader_image_load_store, GL_EXT_shadow_funcs, \n GL_EXT_stencil_two_side, GL_EXT_stencil_wrap, GL_EXT_texture3D, \n GL_EXT_texture_array, GL_EXT_texture_buffer_object, \n GL_EXT_texture_compression_dxt1, GL_EXT_texture_compression_latc, \n GL_EXT_texture_compression_rgtc, GL_EXT_texture_compression_s3tc, \n GL_EXT_texture_cube_map, GL_EXT_texture_edge_clamp, \n GL_EXT_texture_env_add, GL_EXT_texture_env_combine, \n GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic, \n GL_EXT_texture_integer, GL_EXT_texture_lod, GL_EXT_texture_lod_bias, \n GL_EXT_texture_mirror_clamp, GL_EXT_texture_object, GL_EXT_texture_sRGB, \n GL_EXT_texture_sRGB_decode, GL_EXT_texture_shared_exponent, \n GL_EXT_texture_storage, GL_EXT_texture_swizzle, GL_EXT_timer_query, \n GL_EXT_transform_feedback2, GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, \n GL_EXT_vertex_attrib_64bit, GL_EXT_x11_sync_object, GL_IBM_rasterpos_clip, \n GL_IBM_texture_mirrored_repeat, GL_KHR_debug, GL_KTX_buffer_region, \n GL_NVX_conditional_render, GL_NVX_gpu_memory_info, GL_NVX_nvenc_interop, \n GL_NV_ES1_1_compatibility, GL_NV_bindless_texture, GL_NV_blend_square, \n GL_NV_compute_program5, GL_NV_conditional_render, \n GL_NV_copy_depth_to_color, GL_NV_copy_image, GL_NV_depth_buffer_float, \n GL_NV_depth_clamp, GL_NV_draw_texture, GL_NV_explicit_multisample, \n GL_NV_fence, GL_NV_float_buffer, GL_NV_fog_distance, \n GL_NV_fragment_program, GL_NV_fragment_program2, \n GL_NV_fragment_program_option, GL_NV_framebuffer_multisample_coverage, \n GL_NV_geometry_shader4, GL_NV_gpu_program4, GL_NV_gpu_program4_1, \n GL_NV_gpu_program5, GL_NV_gpu_program5_mem_extended, \n GL_NV_gpu_program_fp64, GL_NV_gpu_shader5, GL_NV_half_float, \n GL_NV_light_max_exponent, GL_NV_multisample_coverage, \n GL_NV_multisample_filter_hint, GL_NV_occlusion_query, \n GL_NV_packed_depth_stencil, GL_NV_parameter_buffer_object, \n GL_NV_parameter_buffer_object2, GL_NV_path_rendering, \n GL_NV_pixel_data_range, GL_NV_point_sprite, GL_NV_primitive_restart, \n GL_NV_register_combiners, GL_NV_register_combiners2, \n GL_NV_shader_atomic_counters, GL_NV_shader_atomic_float, \n GL_NV_shader_buffer_load, GL_NV_shader_storage_buffer_object, \n GL_NV_texgen_reflection, GL_NV_texture_barrier, \n GL_NV_texture_compression_vtc, GL_NV_texture_env_combine4, \n GL_NV_texture_expand_normal, GL_NV_texture_multisample, \n GL_NV_texture_rectangle, GL_NV_texture_shader, GL_NV_texture_shader2, \n GL_NV_texture_shader3, GL_NV_transform_feedback, \n GL_NV_transform_feedback2, GL_NV_vdpau_interop, GL_NV_vertex_array_range, \n GL_NV_vertex_array_range2, GL_NV_vertex_attrib_integer_64bit, \n GL_NV_vertex_buffer_unified_memory, GL_NV_vertex_program, \n GL_NV_vertex_program1_1, GL_NV_vertex_program2, \n GL_NV_vertex_program2_option, GL_NV_vertex_program3, GL_S3_s3tc, \n GL_SGIS_generate_mipmap, GL_SGIS_texture_lod, GL_SGIX_depth_texture, \n GL_SGIX_shadow, GL_SUN_slice_accum\n\n228 GLX Visuals\n visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms cav\n 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\n----------------------------------------------------------------------------\n0x021 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x022 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x024 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x025 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x026 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x027 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x028 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x029 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x02a 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x02b 24 tc 0 32 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x02c 24 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x02d 24 tc 0 32 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x02e 24 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x02f 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x030 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x031 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x032 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x033 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x034 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x035 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x036 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x037 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x038 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x039 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x03a 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x03b 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x03c 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x03d 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x03e 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x03f 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x040 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x041 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x042 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x043 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x044 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x045 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x046 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x047 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x048 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x049 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x04a 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x04b 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x04c 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x04d 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x04e 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x04f 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x050 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x051 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x052 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x053 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x054 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x055 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x056 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x057 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x058 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x059 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x05a 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x05b 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x05c 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x05d 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x05e 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x05f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x060 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x061 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x062 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x063 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x064 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x065 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x066 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x067 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x068 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x069 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x06a 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x06b 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x06c 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x06d 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x06e 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x06f 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x070 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x071 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x072 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x073 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x074 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x075 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x076 24 dc 0 32 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x077 24 dc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x078 24 dc 0 32 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x079 24 dc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x07a 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x07b 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x07c 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x07d 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x07e 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x07f 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x080 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x081 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x082 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x083 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x084 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x085 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x086 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x087 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x088 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x089 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x08a 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x08b 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x08c 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x08d 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x08e 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x08f 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x090 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x091 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x092 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x093 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x094 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x095 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x096 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x097 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x098 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x099 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x09a 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x09b 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x09c 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x09d 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x09e 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x09f 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0a0 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x0a1 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x0a2 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0a3 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0a4 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0a5 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0a6 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0a7 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0a8 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0a9 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0aa 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0ab 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0ac 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0ad 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0ae 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0af 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0b0 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0b1 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0b2 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x0b3 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x0b4 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x0b5 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x0b6 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x0b7 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x0b8 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x0b9 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x023 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x0ba 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x0bb 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x0bc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x0bd 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x0be 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x0bf 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x0c0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x0c1 32 tc 0 32 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x0c2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x0c3 32 tc 0 32 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x0c4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x0c5 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x0c6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x0c7 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x0c8 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x0c9 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x0ca 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x0cb 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x0cc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x0cd 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x0ce 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x0cf 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x0d0 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x0d1 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x0d2 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x0d3 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x0d4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x0d5 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x0d6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x0d7 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0d8 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0d9 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x0da 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x0db 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0dc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0dd 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0de 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0df 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0e0 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0e1 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0e2 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0e3 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0e4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0e5 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x0e6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x0e7 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0e8 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0e9 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0ea 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0eb 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x0ec 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x0ed 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0ee 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0ef 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0f0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x0f1 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0f2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0f3 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0f4 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0f5 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0f6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0f7 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0f8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x0f9 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0fa 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0fb 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0fc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x0fd 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x0fe 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x0ff 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x100 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x101 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x102 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x103 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x104 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n\n311 GLXFBConfigs:\n visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms cav\n 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\n----------------------------------------------------------------------------\n0x105 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x106 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x107 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x108 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x109 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x10a 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x10b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x10c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x10d 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x10e 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x10f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x110 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x111 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x112 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x113 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x114 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x115 24 tc 0 32 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x116 24 dc 0 32 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x117 24 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x118 24 dc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x119 24 tc 0 32 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x11a 24 dc 0 32 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x11b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x11c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x11d 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x11e 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x11f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x120 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x121 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x122 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x123 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x124 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x125 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x126 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x127 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x128 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x129 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x12a 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x12b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x12c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x12d 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x12e 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x12f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x130 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x131 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x132 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x133 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x134 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x135 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x136 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x137 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x138 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x139 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x13a 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x13b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x13c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x13d 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x13e 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x13f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x140 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x141 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x142 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x143 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x144 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x145 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x146 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x147 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x148 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x149 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x14a 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x14b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x14c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x14d 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x14e 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x14f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x150 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x151 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x152 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x153 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x154 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x155 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x156 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x157 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x158 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x159 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x15a 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x15b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x15c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x15d 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x15e 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x15f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x160 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x161 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x162 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x163 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x164 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x165 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x166 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x167 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x168 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x169 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x16a 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x16b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x16c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x16d 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x16e 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x16f 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x170 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x171 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x172 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x173 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x174 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x175 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x176 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x177 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x178 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x179 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x17a 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x17b 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x17c 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x17d 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x17e 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x17f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x180 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x181 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x182 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x183 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x184 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x185 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x186 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x187 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x188 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x189 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x18a 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x18b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x18c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x18d 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x18e 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x18f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x190 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x191 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x192 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x193 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x194 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x195 24 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x196 24 dc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x197 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x198 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x199 24 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x19a 24 dc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x19b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x19c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x19d 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x19e 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x19f 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None\n0x1a0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None\n0x1a1 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x1a2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x1a3 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None\n0x1a4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None\n0x1a5 32 tc 0 32 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x1a6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x1a7 32 tc 0 32 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None\n0x1a8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None\n0x1a9 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x1aa 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x1ab 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x1ac 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x1ad 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x1ae 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon\n0x1af 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x1b0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon\n0x1b1 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x1b2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x1b3 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x1b4 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x1b5 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x1b6 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon\n0x1b7 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x1b8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon\n0x1b9 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x1ba 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x1bb 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1bc 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1bd 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x1be 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x1bf 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1c0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1c1 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x1c2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x1c3 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1c4 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1c5 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x1c6 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x1c7 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1c8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1c9 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x1ca 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x1cb 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1cc 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1cd 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1ce 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1cf 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x1d0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon\n0x1d1 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1d2 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1d3 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1d4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon\n0x1d5 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x1d6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x1d7 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1d8 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1d9 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1da 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1db 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x1dc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon\n0x1dd 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1de 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1df 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1e0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon\n0x1e1 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x1e2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x1e3 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x1e4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 32 1 Ncon\n0x1e5 32 tc 0 32 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x1e6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x1e7 32 tc 0 32 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x1e8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 32 1 Ncon\n0x1e9 0 sg 0 16 0 r y . 5 6 5 0 . . 4 16 0 16 16 16 16 0 0 None\n0x1ea 0 sg 0 16 0 r . . 5 6 5 0 . . 4 16 0 16 16 16 16 0 0 None\n0x1eb 0 sg 0 16 0 r y . 5 6 5 0 . . 4 24 0 16 16 16 16 0 0 None\n0x1ec 0 sg 0 16 0 r . . 5 6 5 0 . . 4 24 0 16 16 16 16 0 0 None\n0x1ed 0 sg 0 16 0 r y . 5 6 5 0 . . 4 24 8 16 16 16 16 0 0 None\n0x1ee 0 sg 0 16 0 r . . 5 6 5 0 . . 4 24 8 16 16 16 16 0 0 None\n0x1ef 0 sg 0 16 0 r y . 5 6 5 0 . . 4 0 0 16 16 16 16 0 0 None\n0x1f0 0 sg 0 16 0 r . . 5 6 5 0 . . 4 0 0 16 16 16 16 0 0 None\n0x1f1 0 sg 0 0 0 r . . 0 0 0 0 . . 4 16 0 16 16 16 16 0 0 None\n0x1f2 0 sg 0 0 0 r . . 0 0 0 0 . . 4 24 0 16 16 16 16 0 0 None\n0x1f3 0 sg 0 0 0 r . . 0 0 0 0 . . 4 24 8 16 16 16 16 0 0 None\n0x1f4 0 sg 0 32 0 r . . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x1f5 0 sg 0 32 0 . . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x1f6 0 sg 0 32 0 r y . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x1f7 0 sg 0 32 0 y . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x1f8 0 sg 0 32 0 r . . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x1f9 0 sg 0 32 0 . . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x1fa 0 sg 0 32 0 r y . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x1fb 0 sg 0 32 0 y . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x1fc 0 sg 0 64 0 r . . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None\n0x1fd 0 sg 0 64 0 . . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None\n0x1fe 0 sg 0 64 0 r y . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None\n0x1ff 0 sg 0 64 0 y . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None\n0x200 0 sg 0 128 0 r . . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None\n0x201 0 sg 0 128 0 . . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None\n0x202 0 sg 0 128 0 r y . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None\n0x203 0 sg 0 128 0 y . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None\n0x204 0 sg 0 32 0 r . . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x205 0 sg 0 32 0 . . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x206 0 sg 0 32 0 r y . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x207 0 sg 0 32 0 y . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x208 0 sg 0 32 0 r . . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x209 0 sg 0 32 0 . . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x20a 0 sg 0 32 0 r y . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x20b 0 sg 0 32 0 y . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x20c 0 sg 0 32 0 r . . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x20d 0 sg 0 32 0 . . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x20e 0 sg 0 32 0 r y . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x20f 0 sg 0 32 0 y . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x210 0 sg 0 32 0 r . . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x211 0 sg 0 32 0 . . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x212 0 sg 0 32 0 r y . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x213 0 sg 0 32 0 y . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x214 0 sg 0 64 0 r . . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None\n0x215 0 sg 0 64 0 . . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None\n0x216 0 sg 0 64 0 r y . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None\n0x217 0 sg 0 64 0 y . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None\n0x218 0 sg 0 64 0 r . . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None\n0x219 0 sg 0 64 0 . . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None\n0x21a 0 sg 0 64 0 r y . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None\n0x21b 0 sg 0 64 0 y . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None\n0x21c 0 sg 0 128 0 r . . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None\n0x21d 0 sg 0 128 0 . . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None\n0x21e 0 sg 0 128 0 r y . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None\n0x21f 0 sg 0 128 0 y . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None\n0x220 0 sg 0 128 0 r . . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None\n0x221 0 sg 0 128 0 . . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None\n0x222 0 sg 0 128 0 r y . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None\n0x223 0 sg 0 128 0 y . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None\n0x224 0 sg 0 16 0 r . . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x225 0 sg 0 16 0 . . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x226 0 sg 0 16 0 r y . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x227 0 sg 0 16 0 y . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x228 0 sg 0 64 0 r . . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x229 0 sg 0 64 0 . . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x22a 0 sg 0 64 0 r y . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x22b 0 sg 0 64 0 y . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None\n0x22c 0 sg 0 16 0 r . . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x22d 0 sg 0 16 0 . . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x22e 0 sg 0 16 0 r y . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x22f 0 sg 0 16 0 y . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x230 0 sg 0 16 0 r . . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x231 0 sg 0 16 0 . . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x232 0 sg 0 16 0 r y . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x233 0 sg 0 16 0 y . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x234 0 sg 0 64 0 r . . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x235 0 sg 0 64 0 . . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x236 0 sg 0 64 0 r y . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x237 0 sg 0 64 0 y . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None\n0x238 0 sg 0 64 0 r . . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x239 0 sg 0 64 0 . . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x23a 0 sg 0 64 0 r y . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None\n0x23b 0 sg 0 64 0 y . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None\n\n",
"tests": {
"spec/KHR_debug/push-pop-group": {
"info": "Returncode: 0\n\nErrors:\n\n\nOutput:\nTesting Push Pop debug message group\nTesting Push debug group inheritance\nType: 8268Type: 8268Type: 8268Type: 8268Type: 8268Type: 8268Testing Pop debug group inheritance\nType: 8268Type: 8268Type: 8268PIGLIT: {'result': 'pass' }\n",
"returncode": 0,
"command": "/home/fabe/src/piglit-run/bin/khr_debug-push-pop-group -fbo -auto",
"result": "fail",
"time": 0.06273794174194336
}
},
"time_elapsed": 0.1443030834197998
}
More information about the Piglit
mailing list