Files
ppsspp/Common/UI/UI.cpp

21 lines
372 B
C++
Raw Normal View History

2012-04-10 12:36:38 +02:00
// See header for documentation.
#include <cmath>
#include <cstring>
2012-04-10 12:36:38 +02:00
#include "Common/UI/UI.h"
#include "Common/UI/Context.h"
#include "Common/Render/DrawBuffer.h"
2012-04-10 12:36:38 +02:00
2012-05-14 00:42:42 +02:00
// TODO: UI should probably not own these.
2012-04-10 12:36:38 +02:00
DrawBuffer ui_draw2d;
2012-04-12 22:16:30 +02:00
DrawBuffer ui_draw2d_front;
2012-07-26 13:47:15 +02:00
void UIBegin(Draw::Pipeline *pipeline) {
ui_draw2d.Begin(pipeline);
2012-04-10 12:36:38 +02:00
}
2013-03-30 19:23:02 +01:00
void UIFlush() {
ui_draw2d.Flush();
}