18 lines
378 B
C++
18 lines
378 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace VideoCore {
|
|
|
|
/// Loads renderdoc dynamic library module.
|
|
void LoadRenderDoc();
|
|
|
|
/// Begins a capture if a renderdoc instance is attached.
|
|
void StartCapture();
|
|
|
|
/// Ends current renderdoc capture.
|
|
void EndCapture();
|
|
|
|
} // namespace VideoCore
|