mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 16:20:22 +01:00
26 lines
388 B
C++
26 lines
388 B
C++
#pragma once
|
|
|
|
#include "overlays.h"
|
|
|
|
namespace rsx
|
|
{
|
|
namespace overlays
|
|
{
|
|
class debug_overlay : public user_interface
|
|
{
|
|
label text_display;
|
|
text_guard_t text_guard{};
|
|
|
|
public:
|
|
debug_overlay();
|
|
|
|
compiled_resource get_compiled() override;
|
|
|
|
void set_text(std::string&& text);
|
|
};
|
|
|
|
void reset_debug_overlay();
|
|
void set_debug_overlay_text(std::string&& text);
|
|
}
|
|
}
|