mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-27 09:15:00 +02:00
20 lines
499 B
C++
20 lines
499 B
C++
#pragma once
|
|
|
|
// GE-related windows of the ImDebugger
|
|
|
|
struct ImConfig;
|
|
|
|
class FramebufferManagerCommon;
|
|
class TextureCacheCommon;
|
|
|
|
void DrawFramebuffersWindow(ImConfig &cfg, FramebufferManagerCommon *framebufferManager);
|
|
void DrawTexturesWindow(ImConfig &cfg, TextureCacheCommon *textureCache);
|
|
void DrawDisplayWindow(ImConfig &cfg, FramebufferManagerCommon *framebufferManager);
|
|
void DrawDebugStatsWindow(ImConfig &cfg);
|
|
void DrawGeDebuggerWindow(ImConfig &cfg);
|
|
|
|
class ImGeDebugger {
|
|
public:
|
|
|
|
};
|