mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-05 08:52:36 +00:00
* added imgui as dependency * imgui renderer/basic input implementation * imgui: add layers system Add video info layer to show fps. Press F10 to toggle it. * imgui: add custom imgui config * imgui: gamepad capture, stopping propagation * imgui: changed config & log file path to use portable dir * videoout: render blank frame when video output is closed required to render imgui even when game has no video output - fixed merge compile-error
21 lines
405 B
C++
21 lines
405 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace ImGui {
|
|
|
|
class Layer {
|
|
public:
|
|
virtual ~Layer() = default;
|
|
static void AddLayer(Layer* layer);
|
|
static void RemoveLayer(Layer* layer);
|
|
|
|
virtual void Draw() = 0;
|
|
|
|
virtual bool ShouldGrabGamepad() {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
} // namespace ImGui
|