mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 07:21:25 +12:00
log rsx get ctrl
This commit is contained in:
parent
8cbaa8627c
commit
415b995a54
1 changed files with 7 additions and 0 deletions
|
@ -36,6 +36,7 @@ rsx::frame_capture_data frame_capture;
|
||||||
RSXIOTable RSXIOMem;
|
RSXIOTable RSXIOMem;
|
||||||
|
|
||||||
extern CellGcmOffsetTable offsetTable;
|
extern CellGcmOffsetTable offsetTable;
|
||||||
|
extern thread_local std::string(*g_tls_log_prefix)();
|
||||||
|
|
||||||
namespace rsx
|
namespace rsx
|
||||||
{
|
{
|
||||||
|
@ -535,6 +536,12 @@ namespace rsx
|
||||||
m_rsx_thread = std::this_thread::get_id();
|
m_rsx_thread = std::this_thread::get_id();
|
||||||
run_tests();
|
run_tests();
|
||||||
|
|
||||||
|
g_tls_log_prefix = []
|
||||||
|
{
|
||||||
|
const auto rsx = get_current_renderer();
|
||||||
|
return fmt::format("RSX [0x%07x]", +rsx->ctrl->get);
|
||||||
|
};
|
||||||
|
|
||||||
if (supports_native_ui)
|
if (supports_native_ui)
|
||||||
{
|
{
|
||||||
m_overlay_manager = fxm::make_always<rsx::overlays::display_manager>();
|
m_overlay_manager = fxm::make_always<rsx::overlays::display_manager>();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue