Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/UI/Background.h
4776 views
1
#pragma once
2
3
#include "Common/File/Path.h"
4
5
class UIContext;
6
7
extern Path boot_filename;
8
9
void UIBackgroundInit(UIContext &dc);
10
void UIBackgroundShutdown();
11
void DrawGameBackground(UIContext &dc, const Path &gamePath, float x, float y, float z);
12
void DrawBackground(UIContext &dc, float alpha, float x, float y, float z);
13
14
uint32_t GetBackgroundColorWithAlpha(const UIContext &dc);
15
16