The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

c/main: rm unused wireframe setting;

bjorn f7033557 fa2554f2

-8
-2
src/xrt/compositor/main/comp_settings.c
··· 20 20 DEBUG_GET_ONCE_NUM_OPTION(vk_display, "XRT_COMPOSITOR_FORCE_VK_DISPLAY", -1) 21 21 DEBUG_GET_ONCE_BOOL_OPTION(force_xcb, "XRT_COMPOSITOR_FORCE_XCB", false) 22 22 DEBUG_GET_ONCE_BOOL_OPTION(force_wayland, "XRT_COMPOSITOR_FORCE_WAYLAND", false) 23 - DEBUG_GET_ONCE_BOOL_OPTION(wireframe, "XRT_COMPOSITOR_WIREFRAME", false) 24 23 DEBUG_GET_ONCE_NUM_OPTION(force_gpu_index, "XRT_COMPOSITOR_FORCE_GPU_INDEX", -1) 25 24 DEBUG_GET_ONCE_NUM_OPTION(force_client_gpu_index, "XRT_COMPOSITOR_FORCE_CLIENT_GPU_INDEX", -1) 26 25 DEBUG_GET_ONCE_NUM_OPTION(desired_mode, "XRT_COMPOSITOR_DESIRED_MODE", -1) ··· 78 77 s->print_modes = debug_get_bool_option_print_modes(); 79 78 s->selected_gpu_index = debug_get_num_option_force_gpu_index(); 80 79 s->client_gpu_index = debug_get_num_option_force_client_gpu_index(); 81 - s->debug.wireframe = debug_get_bool_option_wireframe(); 82 80 s->desired_mode = debug_get_num_option_desired_mode(); 83 81 s->viewport_scale = debug_get_num_option_scale_percentage() / 100.0; 84 82
-6
src/xrt/compositor/main/comp_settings.h
··· 86 86 uint32_t height; 87 87 } preferred; 88 88 89 - struct 90 - { 91 - //! Display wireframe instead of solid triangles. 92 - bool wireframe; 93 - } debug; 94 - 95 89 //! Percentage to scale the viewport by. 96 90 double viewport_scale; 97 91