CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/UI/DebugOverlay.h
Views: 1401
1
#pragma once
2
3
#include "Common/File/Path.h"
4
#include "Common/UI/Context.h"
5
#include "Core/ConfigValues.h"
6
#include "Core/ControlMapper.h"
7
8
void DrawControlMapperOverlay(UIContext *ctx, const Bounds &bounds, const ControlMapper &controlMapper);
9
void DrawDebugOverlay(UIContext *ctx, const Bounds &bounds, DebugOverlay overlay);
10
void DrawCrashDump(UIContext *ctx, const Path &gamePath);
11
void DrawFPS(UIContext *ctx, const Bounds &bounds);
12
13