mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
17 lines
507 B
C++
17 lines
507 B
C++
#pragma once
|
|
|
|
#include "Common/File/Path.h"
|
|
#include "Common/Math/lin/vec3.h"
|
|
|
|
class UIContext;
|
|
|
|
extern Path boot_filename;
|
|
|
|
void UIBackgroundInit(UIContext &dc);
|
|
void UIBackgroundShutdown();
|
|
void DrawGameBackground(UIContext &dc, const Path &gamePath, Lin::Vec3 focus, float alpha);
|
|
void DrawBackground(UIContext &dc, float alpha, Lin::Vec3 focus);
|
|
void DrawBackgroundTexture(UIContext &dc, Draw::Texture *texture, Lin::Vec3 focus, float alpha);
|
|
|
|
uint32_t GetBackgroundColorWithAlpha(const UIContext &dc);
|