mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
38 lines
984 B
C++
38 lines
984 B
C++
#pragma once
|
|
|
|
// Everything you need to draw a UI collected into a single unit that can be passed around.
|
|
// Everything forward declared so this header is safe everywhere.
|
|
|
|
struct GLSLProgram;
|
|
class Texture;
|
|
class DrawBuffer;
|
|
|
|
// Who should own this? Really not sure.
|
|
class UIContext {
|
|
public:
|
|
UIContext() : uishader_(0), uitexture_(0), uidrawbuffer_(0), uidrawbufferTop_(0) {}
|
|
|
|
void Init(const GLSLProgram *uishader, const GLSLProgram *uishadernotex, Texture *uitexture, DrawBuffer *uidrawbuffer, DrawBuffer *uidrawbufferTop) {
|
|
uishader_ = uishader;
|
|
uishadernotex_ = uishadernotex;
|
|
uitexture_ = uitexture;
|
|
uidrawbuffer_ = uidrawbuffer;
|
|
uidrawbufferTop_ = uidrawbufferTop;
|
|
}
|
|
|
|
void Begin();
|
|
void BeginNoTex();
|
|
void Flush();
|
|
void End();
|
|
|
|
void RebindTexture() const;
|
|
|
|
private:
|
|
// TODO: Collect these into a UIContext
|
|
const GLSLProgram *uishader_;
|
|
const GLSLProgram *uishadernotex_;
|
|
Texture *uitexture_;
|
|
DrawBuffer *uidrawbuffer_;
|
|
DrawBuffer *uidrawbufferTop_;
|
|
};
|