Home
last modified time | relevance | path

Searched refs:debug_flags (Results 1 – 25 of 1744) sorted by relevance

12345678910>>...70

/dports/deskutils/glabels/glabels-3.4.1/src/
H A Ddebug.c46 debug_flags = ~GLABELS_DEBUG_NONE; in gl_debug_init()
51 debug_flags |= GLABELS_DEBUG_VIEW; in gl_debug_init()
53 debug_flags |= GLABELS_DEBUG_ITEM; in gl_debug_init()
55 debug_flags |= GLABELS_DEBUG_PRINT; in gl_debug_init()
57 debug_flags |= GLABELS_DEBUG_PREFS; in gl_debug_init()
59 debug_flags |= GLABELS_DEBUG_FILE; in gl_debug_init()
61 debug_flags |= GLABELS_DEBUG_LABEL; in gl_debug_init()
67 debug_flags |= GLABELS_DEBUG_XML; in gl_debug_init()
71 debug_flags |= GLABELS_DEBUG_UNDO; in gl_debug_init()
79 debug_flags |= GLABELS_DEBUG_UI; in gl_debug_init()
[all …]
/dports/x11/yelp/yelp-40.3/libyelp/
H A Dyelp-debug.c65 static guint debug_flags = 0; in yelp_debug() local
94 debug_flags = 0; in yelp_debug()
97 if (debug_flags & DB_ALL) in yelp_debug()
103 else if (debug_flags & DB_LOG) in yelp_debug()
105 else if (debug_flags & DB_INFO) in yelp_debug()
106 debug_flags |= (DB_DEBUG | DB_WARN | DB_ERROR); in yelp_debug()
107 else if (debug_flags & DB_DEBUG) in yelp_debug()
108 debug_flags |= (DB_WARN | DB_ERROR); in yelp_debug()
109 else if (debug_flags & DB_WARN) in yelp_debug()
110 debug_flags |= (DB_ERROR); in yelp_debug()
[all …]
/dports/net/nbdkit/nbdkit-1.20.4/server/
H A Ddebug-flags.c123 flag->next = debug_flags; in add_debug_flag()
124 debug_flags = flag; in add_debug_flag()
159 while (debug_flags != NULL) { in free_debug_flags()
160 struct debug_flag *next = debug_flags->next; in free_debug_flags()
162 if (!debug_flags->used) in free_debug_flags()
164 program_name, debug_flags->name, debug_flags->flag); in free_debug_flags()
165 free (debug_flags->name); in free_debug_flags()
166 free (debug_flags->flag); in free_debug_flags()
167 free (debug_flags->symbol); in free_debug_flags()
168 free (debug_flags); in free_debug_flags()
[all …]
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/plugins/switch/generic/
H A Dswitch_generic.c127 uint64_t debug_flags = 0; variable
325 if (debug_flags & DEBUG_FLAG_SWITCH) in switch_p_libstate_save()
333 if (debug_flags & DEBUG_FLAG_SWITCH) in switch_p_libstate_restore()
345 if (debug_flags & DEBUG_FLAG_SWITCH) in switch_p_libstate_clear()
358 if (debug_flags & DEBUG_FLAG_SWITCH) in switch_p_alloc_jobinfo()
379 if (debug_flags & DEBUG_FLAG_SWITCH) in switch_p_build_jobinfo()
423 if (debug_flags & DEBUG_FLAG_SWITCH) in switch_p_duplicate_jobinfo()
442 if (debug_flags & DEBUG_FLAG_SWITCH) in switch_p_free_jobinfo()
472 if (debug_flags & DEBUG_FLAG_SWITCH) in switch_p_pack_jobinfo()
510 if (debug_flags & DEBUG_FLAG_SWITCH) in switch_p_unpack_jobinfo()
[all …]
/dports/graphics/blender/blender-2.91.0/intern/cycles/util/
H A Dutil_debug.cpp137 std::ostream &operator<<(std::ostream &os, DebugFlagsConstRef debug_flags) in operator <<() argument
140 << " AVX2 : " << string_from_bool(debug_flags.cpu.avx2) << "\n" in operator <<()
141 << " AVX : " << string_from_bool(debug_flags.cpu.avx) << "\n" in operator <<()
142 << " SSE4.1 : " << string_from_bool(debug_flags.cpu.sse41) << "\n" in operator <<()
143 << " SSE3 : " << string_from_bool(debug_flags.cpu.sse3) << "\n" in operator <<()
144 << " SSE2 : " << string_from_bool(debug_flags.cpu.sse2) << "\n" in operator <<()
145 << " BVH layout : " << bvh_layout_name(debug_flags.cpu.bvh_layout) << "\n" in operator <<()
146 << " Split : " << string_from_bool(debug_flags.cpu.split_kernel) << "\n"; in operator <<()
152 << " CUDA streams : " << debug_flags.optix.cuda_streams << "\n"; in operator <<()
155 switch (debug_flags.opencl.device_type) { in operator <<()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/wr/webrender/src/
H A Ddebug_server.rs30 debug_flags: DebugFlags, field
54 "enable_profiler" => self.debug_flags.insert(DebugFlags::PROFILER_DBG), in on_message()
55 "disable_profiler" => self.debug_flags.remove(DebugFlags::PROFILER_DBG), in on_message()
66 "disable_alpha_pass" => self.debug_flags.insert(DebugFlags::DISABLE_ALPHA_PASS), in on_message()
67 "enable_alpha_pass" => self.debug_flags.remove(DebugFlags::DISABLE_ALPHA_PASS), in on_message()
68 "disable_clip_masks" => self.debug_flags.insert(DebugFlags::DISABLE_CLIP_MASKS), in on_message()
69 "enable_clip_masks" => self.debug_flags.remove(DebugFlags::DISABLE_CLIP_MASKS), in on_message()
70 "disable_text_prims" => self.debug_flags.insert(DebugFlags::DISABLE_TEXT_PRIMS), in on_message()
71 "enable_text_prims" => self.debug_flags.remove(DebugFlags::DISABLE_TEXT_PRIMS), in on_message()
78 DebugCommand::SetFlags(self.debug_flags) in on_message()
[all …]
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/plugins/job_container/cncu/
H A Djob_container_cncu.c90 static uint64_t debug_flags = 0; variable
199 if (debug_flags & DEBUG_FLAG_TIME_CRAY) in _stat_reservation()
206 debug_flags = slurm_get_debug_flags(); in container_p_reconfig()
215 debug_flags = slurm_get_debug_flags(); in init()
216 if (debug_flags & DEBUG_FLAG_JOB_CONT) in init()
250 if (debug_flags & DEBUG_FLAG_JOB_CONT) in container_p_restore()
273 if (debug_flags & DEBUG_FLAG_JOB_CONT) in container_p_create()
316 if (debug_flags & DEBUG_FLAG_JOB_CONT) in container_p_create()
337 if (debug_flags & DEBUG_FLAG_JOB_CONT) { in container_p_add_cont()
352 if (debug_flags & DEBUG_FLAG_JOB_CONT) in container_p_add_cont()
[all …]
/dports/sysutils/freeipmi/freeipmi-1.6.8/libipmiconsole/
H A Dipmiconsole_debug.c68 ipmiconsole_debug_setup (uint32_t debug_flags) in ipmiconsole_debug_setup() argument
70 assert (debug_flags == IPMICONSOLE_DEBUG_DEFAULT in ipmiconsole_debug_setup()
71 || !(debug_flags & ~IPMICONSOLE_DEBUG_MASK)); in ipmiconsole_debug_setup()
73 if (debug_flags == IPMICONSOLE_DEBUG_DEFAULT) in ipmiconsole_debug_setup()
76 console_debug_flags = debug_flags; in ipmiconsole_debug_setup()
222 if (c->config.debug_flags & IPMICONSOLE_DEBUG_STDOUT) in _ctx_debug()
226 c->config.debug_flags &= ~IPMICONSOLE_DEBUG_STDOUT; in _ctx_debug()
242 if (c->config.debug_flags & IPMICONSOLE_DEBUG_STDERR) in _ctx_debug()
262 if (c->config.debug_flags & IPMICONSOLE_DEBUG_SYSLOG) in _ctx_debug()
264 if (c->config.debug_flags & IPMICONSOLE_DEBUG_FILE) in _ctx_debug()
[all …]
/dports/net/liferea/liferea-1.12.7/src/
H A Dliferea_application.c53 gulong debug_flags; member
210 gulong *debug_flags = data; in debug_entries_parse_callback() local
215 *debug_flags |= DEBUG_CACHE; in debug_entries_parse_callback()
217 *debug_flags |= DEBUG_CONF; in debug_entries_parse_callback()
219 *debug_flags |= DEBUG_DB; in debug_entries_parse_callback()
221 *debug_flags |= DEBUG_GUI; in debug_entries_parse_callback()
223 *debug_flags |= DEBUG_HTML; in debug_entries_parse_callback()
225 *debug_flags |= DEBUG_NET; in debug_entries_parse_callback()
229 *debug_flags |= DEBUG_PERF; in debug_entries_parse_callback()
231 *debug_flags |= DEBUG_TRACE; in debug_entries_parse_callback()
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/ash/src/vk/
H A Dconst_debugs.rs1 use crate::prelude::debug_flags;
47 debug_flags(f, KNOWN, self.0) in fmt()
68 debug_flags(f, KNOWN, self.0) in fmt()
74 debug_flags(f, KNOWN, self.0) in fmt()
194 debug_flags(f, KNOWN, self.0) in fmt()
306 debug_flags(f, KNOWN, self.0) in fmt()
312 debug_flags(f, KNOWN, self.0) in fmt()
318 debug_flags(f, KNOWN, self.0) in fmt()
324 debug_flags(f, KNOWN, self.0) in fmt()
500 debug_flags(f, KNOWN, self.0) in fmt()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/ash/src/vk/
H A Dconst_debugs.rs5 pub(crate) fn debug_flags( in debug_flags() function
71 debug_flags(f, KNOWN, self.0) in fmt()
193 debug_flags(f, KNOWN, self.0) in fmt()
199 debug_flags(f, KNOWN, self.0) in fmt()
205 debug_flags(f, KNOWN, self.0) in fmt()
211 debug_flags(f, KNOWN, self.0) in fmt()
386 debug_flags(f, KNOWN, self.0) in fmt()
441 debug_flags(f, KNOWN, self.0) in fmt()
447 debug_flags(f, KNOWN, self.0) in fmt()
478 debug_flags(f, KNOWN, self.0) in fmt()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/ash/src/vk/
H A Dconst_debugs.rs5 pub(crate) fn debug_flags( in debug_flags() function
71 debug_flags(f, KNOWN, self.0) in fmt()
193 debug_flags(f, KNOWN, self.0) in fmt()
199 debug_flags(f, KNOWN, self.0) in fmt()
205 debug_flags(f, KNOWN, self.0) in fmt()
211 debug_flags(f, KNOWN, self.0) in fmt()
386 debug_flags(f, KNOWN, self.0) in fmt()
441 debug_flags(f, KNOWN, self.0) in fmt()
447 debug_flags(f, KNOWN, self.0) in fmt()
478 debug_flags(f, KNOWN, self.0) in fmt()
[all …]
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/slurmctld/
H A Dgang.c186 if (slurmctld_conf.debug_flags & DEBUG_FLAG_GANG) { in _print_jobs()
274 if (slurmctld_conf.debug_flags & DEBUG_FLAG_GANG) { in _load_phys_res_cnt()
418 if (slurmctld_conf.debug_flags & DEBUG_FLAG_GANG) in _job_fits_in_active_row()
563 if (slurmctld_conf.debug_flags & DEBUG_FLAG_GANG) in _suspend_job()
584 if (slurmctld_conf.debug_flags & DEBUG_FLAG_GANG) in _resume_job()
1036 if (slurmctld_conf.debug_flags & DEBUG_FLAG_GANG) in _scan_slurm_job_list()
1131 if (slurmctld_conf.debug_flags & DEBUG_FLAG_GANG) in gs_init()
1148 if (slurmctld_conf.debug_flags & DEBUG_FLAG_GANG) in gs_init()
1159 if (slurmctld_conf.debug_flags & DEBUG_FLAG_GANG) in gs_fini()
1182 if (slurmctld_conf.debug_flags & DEBUG_FLAG_GANG) in gs_fini()
[all …]
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/webrender-0.60.0/src/
H A Ddebug_server.rs29 debug_flags: DebugFlags, field
53 "enable_profiler" => self.debug_flags.insert(DebugFlags::PROFILER_DBG), in on_message()
54 "disable_profiler" => self.debug_flags.remove(DebugFlags::PROFILER_DBG), in on_message()
55 … "enable_texture_cache_debug" => self.debug_flags.insert(DebugFlags::TEXTURE_CACHE_DBG), in on_message()
56 … "disable_texture_cache_debug" => self.debug_flags.remove(DebugFlags::TEXTURE_CACHE_DBG), in on_message()
57 … "enable_render_target_debug" => self.debug_flags.insert(DebugFlags::RENDER_TARGET_DBG), in on_message()
59 … "enable_gpu_time_queries" => self.debug_flags.insert(DebugFlags::GPU_TIME_QUERIES), in on_message()
60 … "disable_gpu_time_queries" => self.debug_flags.remove(DebugFlags::GPU_TIME_QUERIES), in on_message()
61 … "enable_gpu_sample_queries" => self.debug_flags.insert(DebugFlags::GPU_SAMPLE_QUERIES), in on_message()
67 DebugCommand::SetFlags(self.debug_flags) in on_message()
[all …]
/dports/games/ags/ags_linux_v.3.4.4.1/Engine/main/
H A Dmain.cpp74 extern int debug_flags;
225 debug_flags |= DBG_REGONLY; in main_process_cmdline()
261 else if (stricmp(argv[ee],"--test")==0) debug_flags|=DBG_DEBUGMODE; in main_process_cmdline()
262 else if (stricmp(argv[ee],"-noiface")==0) debug_flags|=DBG_NOIFACE; in main_process_cmdline()
264 else if (stricmp(argv[ee],"-nospr")==0) debug_flags|=DBG_NOOBJECTS; in main_process_cmdline()
265 else if (stricmp(argv[ee],"-noupdate")==0) debug_flags|=DBG_NOUPDATE; in main_process_cmdline()
266 else if (stricmp(argv[ee],"-nosound")==0) debug_flags|=DBG_NOSFX; in main_process_cmdline()
267 else if (stricmp(argv[ee],"-nomusic")==0) debug_flags|=DBG_NOMUSIC; in main_process_cmdline()
269 else if (stricmp(argv[ee],"-novideo")==0) debug_flags|=DBG_NOVIDEO; in main_process_cmdline()
475 debug_flags=0; in main()
[all …]
/dports/devel/brz/breezy-3.2.0/breezy/transport/
H A Dgio_transport.py304 if 'gio' in debug.debug_flags:
347 if 'gio' in debug.debug_flags:
361 if 'gio' in debug.debug_flags:
391 if 'gio' in debug.debug_flags:
430 if 'gio' in debug.debug_flags:
478 if 'gio' in debug.debug_flags:
485 if 'gio' in debug.debug_flags:
491 if 'gio' in debug.debug_flags:
507 if 'gio' in debug.debug_flags:
533 if 'gio' in debug.debug_flags:
[all …]
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/plugins/acct_gather_energy/rsmi/
H A Dacct_gather_energy_rsmi.c109 static uint64_t debug_flags = 0; variable
165 if (debug_flags & DEBUG_FLAG_ENERGY) in _send_profile()
317 if (debug_flags & DEBUG_FLAG_ENERGY) in _thread_init()
336 if (debug_flags & DEBUG_FLAG_ENERGY) in _thread_rsmi_run()
344 if (debug_flags & DEBUG_FLAG_ENERGY) in _thread_rsmi_run()
382 if (debug_flags & DEBUG_FLAG_ENERGY) in _thread_rsmi_run()
449 if (debug_flags & DEBUG_FLAG_ENERGY) in _add_energy()
488 if (debug_flags & DEBUG_FLAG_ENERGY) in _get_node_energy_up()
491 if (debug_flags & DEBUG_FLAG_ENERGY) in _get_node_energy_up()
506 if (debug_flags & DEBUG_FLAG_ENERGY) in _get_node_energy_up()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/wr/examples/common/
H A Dboilerplate.rs161 let mut debug_flags = DebugFlags::ECHO_DRIVER_MESSAGES | DebugFlags::TEXTURE_CACHE_DBG; in main_wrapper() localVariable
167 debug_flags, in main_wrapper()
231 let old_flags = debug_flags; in main_wrapper()
259 winit::VirtualKeyCode::P => debug_flags.toggle(DebugFlags::PROFILER_DBG), in main_wrapper()
260 winit::VirtualKeyCode::O => debug_flags.toggle(DebugFlags::RENDER_TARGET_DBG), in main_wrapper()
262 winit::VirtualKeyCode::S => debug_flags.toggle(DebugFlags::COMPACT_PROFILER), in main_wrapper()
264 winit::VirtualKeyCode::Q => debug_flags.toggle( in main_wrapper()
267 winit::VirtualKeyCode::F => debug_flags.toggle( in main_wrapper()
270 winit::VirtualKeyCode::G => debug_flags.toggle(DebugFlags::GPU_CACHE_DBG), in main_wrapper()
302 if debug_flags != old_flags { in main_wrapper()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/ags/engine/main/
H A Dmain.cpp206 _G(debug_flags) |= DBG_REGONLY; in main_process_cmdline()
270 else if (ags_stricmp(arg, "--test") == 0) _G(debug_flags) |= DBG_DEBUGMODE; in main_process_cmdline()
271 else if (ags_stricmp(arg, "--noiface") == 0) _G(debug_flags) |= DBG_NOIFACE; in main_process_cmdline()
272 else if (ags_stricmp(arg, "--nosprdisp") == 0) _G(debug_flags) |= DBG_NODRAWSPRITES; in main_process_cmdline()
273 else if (ags_stricmp(arg, "--nospr") == 0) _G(debug_flags) |= DBG_NOOBJECTS; in main_process_cmdline()
274 else if (ags_stricmp(arg, "--noupdate") == 0) _G(debug_flags) |= DBG_NOUPDATE; in main_process_cmdline()
275 else if (ags_stricmp(arg, "--nosound") == 0) _G(debug_flags) |= DBG_NOSFX; in main_process_cmdline()
276 else if (ags_stricmp(arg, "--nomusic") == 0) _G(debug_flags) |= DBG_NOMUSIC; in main_process_cmdline()
277 else if (ags_stricmp(arg, "--noscript") == 0) _G(debug_flags) |= DBG_NOSCRIPT; in main_process_cmdline()
278 else if (ags_stricmp(arg, "--novideo") == 0) _G(debug_flags) |= DBG_NOVIDEO; in main_process_cmdline()
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/plugins/acct_gather_energy/rapl/
H A Dacct_gather_energy_rapl.c126 static uint64_t debug_flags = 0; variable
160 if (first && (debug_flags & DEBUG_FLAG_ENERGY)) { in _read_msr()
273 if (debug_flags & DEBUG_FLAG_ENERGY) in _hardware()
329 if (debug_flags & DEBUG_FLAG_ENERGY) { in _get_joules_task()
355 if (debug_flags & DEBUG_FLAG_ENERGY) in _get_joules_task()
380 if (debug_flags & DEBUG_FLAG_ENERGY) in _get_joules_task()
412 if (debug_flags & DEBUG_FLAG_ENERGY) in _send_profile()
419 if (debug_flags & DEBUG_FLAG_ENERGY) in _send_profile()
428 if (debug_flags & DEBUG_FLAG_PROFILE) { in _send_profile()
463 debug_flags = slurm_get_debug_flags(); in init()
[all …]
/dports/graphics/mesa-dri-classic/mesa-20.2.3/src/gallium/drivers/radeonsi/
H A Dsi_pipe.c601 if (sscreen->debug_flags & DBG(FORCE_SDMA)) in si_create_context()
723 if (sscreen->debug_flags & DBG(CHECK_VM)) in si_pipe_create_context()
980 if (sscreen->debug_flags & DBG(NO_GFX)) in radeonsi_screen_create_impl()
1004 if (sscreen->debug_flags & DBG(INFO)) in radeonsi_screen_create_impl()
1182 if (sscreen->debug_flags & DBG(DPBB)) { in radeonsi_screen_create_impl()
1184 if (sscreen->debug_flags & DBG(DFSM)) in radeonsi_screen_create_impl()
1189 if (sscreen->debug_flags & DBG(NO_DPBB)) { in radeonsi_screen_create_impl()
1254 if (sscreen->debug_flags & DBG(W32_GE)) in radeonsi_screen_create_impl()
1256 if (sscreen->debug_flags & DBG(W32_PS)) in radeonsi_screen_create_impl()
1258 if (sscreen->debug_flags & DBG(W32_CS)) in radeonsi_screen_create_impl()
[all …]
/dports/net-im/telepathy-mission-control/telepathy-mission-control-5.16.6/mission-control-plugins/
H A Ddebug.c24 static McpDebugFlags debug_flags; variable
45 debug_flags = MCP_DEBUG_NONE; in mcp_debug_init()
54 debug_flags = g_parse_debug_string (debug, keys, G_N_ELEMENTS (keys) - 1); in mcp_debug_init()
61 return (flags & debug_flags) != 0; in mcp_is_debugging()
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/common/
H A Dmsg_aggr.c59 uint32_t debug_flags; member
127 if (msg_collection.debug_flags & DEBUG_FLAG_ROUTE) { in _send_to_backup_collector()
134 if (msg_collection.debug_flags & DEBUG_FLAG_ROUTE) { in _send_to_backup_collector()
147 if (msg_collection.debug_flags & DEBUG_FLAG_ROUTE) in _send_to_backup_collector()
172 if (msg_collection.debug_flags & DEBUG_FLAG_ROUTE) in _send_to_next_collector()
176 if (msg_collection.debug_flags & DEBUG_FLAG_ROUTE) { in _send_to_next_collector()
291 msg_collection.debug_flags = slurm_get_debug_flags(); in msg_aggr_sender_init()
309 msg_collection.debug_flags = slurm_get_debug_flags(); in msg_aggr_sender_reconfig()
438 if (msg_collection.debug_flags & DEBUG_FLAG_ROUTE) in msg_aggr_resp()
446 if (msg_collection.debug_flags & DEBUG_FLAG_ROUTE) in msg_aggr_resp()
[all …]
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/plugins/switch/cray_aries/
H A Dswitch_cray_aries.c71 uint64_t debug_flags = 0; variable
113 debug_flags = slurm_get_debug_flags(); in init()
132 debug_flags = slurm_get_debug_flags(); in switch_p_reconfig()
222 if (debug_flags & DEBUG_FLAG_TIME_CRAY) in switch_p_build_jobinfo()
308 if (debug_flags & DEBUG_FLAG_TIME_CRAY) in switch_p_free_jobinfo()
332 if (debug_flags & DEBUG_FLAG_SWITCH) { in switch_p_pack_jobinfo()
400 if (debug_flags & DEBUG_FLAG_SWITCH) { in switch_p_unpack_jobinfo()
569 if (debug_flags & DEBUG_FLAG_SWITCH) { in switch_p_job_init()
701 if (debug_flags & DEBUG_FLAG_TIME_CRAY) in switch_p_job_init()
774 if (debug_flags & DEBUG_FLAG_TIME_CRAY) in switch_p_job_fini()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/gfx/wr/examples/common/
H A Dboilerplate.rs161 let mut debug_flags = DebugFlags::ECHO_DRIVER_MESSAGES | DebugFlags::TEXTURE_CACHE_DBG; in main_wrapper() localVariable
166 debug_flags, in main_wrapper()
225 let old_flags = debug_flags; in main_wrapper()
253 winit::VirtualKeyCode::P => debug_flags.toggle(DebugFlags::PROFILER_DBG), in main_wrapper()
254 winit::VirtualKeyCode::O => debug_flags.toggle(DebugFlags::RENDER_TARGET_DBG), in main_wrapper()
255 winit::VirtualKeyCode::I => debug_flags.toggle(DebugFlags::TEXTURE_CACHE_DBG), in main_wrapper()
256 winit::VirtualKeyCode::T => debug_flags.toggle(DebugFlags::PICTURE_CACHING_DBG), in main_wrapper()
257 winit::VirtualKeyCode::Q => debug_flags.toggle( in main_wrapper()
260 winit::VirtualKeyCode::G => debug_flags.toggle(DebugFlags::GPU_CACHE_DBG), in main_wrapper()
284 if debug_flags != old_flags { in main_wrapper()
[all …]

12345678910>>...70