mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
* Qt: Add config window controls * Fix Windows build * Fix audio slider * Qt configs: Make thread-safe, properly update audio enable & renderdoc settings * Qt configs: Add `connectCheckbox` function * Qt configs: Add `connectCheckbox` function * Rename spuLayout * Add Discord RPC reloading * Allow configuring the app icon * Qt: Serialize icon & theme, properly set them * Add rnap and rcow icons * Qt: Fix forceShadergen config --------- Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
73 lines
2.4 KiB
C++
73 lines
2.4 KiB
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
#include <string>
|
|
|
|
#include "helpers.hpp"
|
|
|
|
#ifdef PANDA3DS_ENABLE_RENDERDOC
|
|
namespace Renderdoc {
|
|
// Loads renderdoc dynamic library module.
|
|
void loadRenderdoc();
|
|
|
|
// Begins a capture if a renderdoc instance is attached.
|
|
void startCapture();
|
|
|
|
// Ends current renderdoc capture.
|
|
void endCapture();
|
|
|
|
// Triggers capturing process.
|
|
void triggerCapture();
|
|
|
|
// Sets output directory for captures
|
|
void setOutputDir(const std::string& path, const std::string& prefix);
|
|
|
|
// Returns whether Renderdoc has been loaded
|
|
bool isLoaded();
|
|
|
|
// Returns whether we've compiled with Renderdoc support
|
|
static constexpr bool isSupported() { return true; }
|
|
} // namespace Renderdoc
|
|
#else
|
|
namespace Renderdoc {
|
|
static void loadRenderdoc() {}
|
|
static void startCapture() { Helpers::panic("Tried to start a Renderdoc capture while support for renderdoc is disabled"); }
|
|
static void endCapture() { Helpers::panic("Tried to end a Renderdoc capture while support for renderdoc is disabled"); }
|
|
static void triggerCapture() { Helpers::panic("Tried to trigger a Renderdoc capture while support for renderdoc is disabled"); }
|
|
static void setOutputDir(const std::string& path, const std::string& prefix) {}
|
|
static constexpr bool isSupported() { return false; }
|
|
static constexpr bool isLoaded() { return false; }
|
|
} // namespace Renderdoc
|
|
#endif
|
|
|
|
namespace Renderdoc {
|
|
// RAII scope class that encloses a Renderdoc capture, as long as it's triggered by triggerCapture
|
|
struct Scope {
|
|
Scope() { Renderdoc::startCapture(); }
|
|
~Scope() { Renderdoc::endCapture(); }
|
|
|
|
Scope(const Scope&) = delete;
|
|
Scope& operator=(const Scope&) = delete;
|
|
|
|
Scope(Scope&&) = delete;
|
|
Scope& operator=(const Scope&&) = delete;
|
|
};
|
|
|
|
// RAII scope class that encloses a Renderdoc capture. Unlike regular Scope it doesn't wait for a trigger, it will always issue the capture
|
|
// trigger on its own and take a capture
|
|
struct InstantScope {
|
|
InstantScope() {
|
|
Renderdoc::triggerCapture();
|
|
Renderdoc::startCapture();
|
|
}
|
|
|
|
~InstantScope() { Renderdoc::endCapture(); }
|
|
|
|
InstantScope(const InstantScope&) = delete;
|
|
InstantScope& operator=(const InstantScope&) = delete;
|
|
|
|
InstantScope(InstantScope&&) = delete;
|
|
InstantScope& operator=(const InstantScope&&) = delete;
|
|
};
|
|
} // namespace Renderdoc
|