[externals] update renderdoc to 1.7.0 (#3751)
Some checks are pending
tx-src / sources (push) Waiting to run
Check Strings / check-strings (push) Waiting to run

Signed-off-by: lizzie <lizzie@eden-emu.dev>
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3751
Co-authored-by: lizzie <lizzie@eden-emu.dev>
Co-committed-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie 2026-03-22 04:00:57 +01:00 committed by crueter
parent 5ebdb29afd
commit c5b519380c
No known key found for this signature in database
GPG key ID: 425ACD2D4830EBC6
2 changed files with 154 additions and 17 deletions

View file

@ -1,9 +1,12 @@
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
struct RENDERDOC_API_1_6_0;
struct RENDERDOC_API_1_7_0;
namespace Tools {
@ -15,7 +18,7 @@ public:
void ToggleCapture();
private:
RENDERDOC_API_1_6_0* rdoc_api{};
RENDERDOC_API_1_7_0* rdoc_api{};
bool is_capturing{false};
};