mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 00:04:49 +02:00
15 lines
383 B
C++
15 lines
383 B
C++
#pragma once
|
|
|
|
#include "Common/File/Path.h"
|
|
|
|
class UIContext;
|
|
|
|
extern Path boot_filename;
|
|
|
|
void UIBackgroundInit(UIContext &dc);
|
|
void UIBackgroundShutdown();
|
|
void DrawGameBackground(UIContext &dc, const Path &gamePath, float x, float y, float z);
|
|
void DrawBackground(UIContext &dc, float alpha, float x, float y, float z);
|
|
|
|
uint32_t GetBackgroundColorWithAlpha(const UIContext &dc);
|