diff options
| author | 2023-09-16 11:39:50 -0400 | |
|---|---|---|
| committer | 2023-09-16 11:39:50 -0400 | |
| commit | 821037e18fd1e2989a259040cdd0a87ac8ccd6fe (patch) | |
| tree | 9976dc0e0b7ffa826f88c0e0864853190a366139 /src/core/core.h | |
| parent | Merge pull request #11508 from t895/audio-mute (diff) | |
| parent | debug: Add renderdoc capture hotkey (diff) | |
| download | yuzu-821037e18fd1e2989a259040cdd0a87ac8ccd6fe.tar.gz yuzu-821037e18fd1e2989a259040cdd0a87ac8ccd6fe.tar.xz yuzu-821037e18fd1e2989a259040cdd0a87ac8ccd6fe.zip | |
Merge pull request #11475 from GPUCode/renderdoc-hotkey
debug: Add renderdoc capture hotkey
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index fba312125..df20f26f3 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -102,6 +102,10 @@ namespace Network { | |||
| 102 | class RoomNetwork; | 102 | class RoomNetwork; |
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | namespace Tools { | ||
| 106 | class RenderdocAPI; | ||
| 107 | } | ||
| 108 | |||
| 105 | namespace Core { | 109 | namespace Core { |
| 106 | 110 | ||
| 107 | class ARM_Interface; | 111 | class ARM_Interface; |
| @@ -413,6 +417,8 @@ public: | |||
| 413 | /// Gets an immutable reference to the Room Network. | 417 | /// Gets an immutable reference to the Room Network. |
| 414 | [[nodiscard]] const Network::RoomNetwork& GetRoomNetwork() const; | 418 | [[nodiscard]] const Network::RoomNetwork& GetRoomNetwork() const; |
| 415 | 419 | ||
| 420 | [[nodiscard]] Tools::RenderdocAPI& GetRenderdocAPI(); | ||
| 421 | |||
| 416 | void SetExitLocked(bool locked); | 422 | void SetExitLocked(bool locked); |
| 417 | bool GetExitLocked() const; | 423 | bool GetExitLocked() const; |
| 418 | 424 | ||