mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-09 20:58:31 +09:00
11 lines
360 B
C++
11 lines
360 B
C++
#pragma once
|
|
|
|
namespace mobilegl_trace_dump {
|
|
|
|
// Installs the framebuffer-attachment dump hook when MOBILEGL_TRACE_DUMP_FBO_ATTACHMENTS
|
|
// describes at least one dump point. Safe and cheap to call on every makeCurrent: the
|
|
// environment is consulted once and the hook is installed at most once.
|
|
void InstallIfRequested();
|
|
|
|
} // namespace mobilegl_trace_dump
|