mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Enable native text draw on Linux Qt.
This commit is contained in:
parent
05eabb1fd7
commit
be4ad14b92
@ -18,6 +18,7 @@
|
||||
#include "UI/ui_atlas.h"
|
||||
#include "ui/ui.h"
|
||||
#include "ui/ui_context.h"
|
||||
#include "gfx_es2/draw_text.h"
|
||||
#include "GPU/ge_constants.h"
|
||||
#include "EmuThread.h"
|
||||
|
||||
@ -441,6 +442,9 @@ void NativeRender()
|
||||
glUniformMatrix4fv(UIShader_Get()->u_worldviewproj, 1, GL_FALSE, ortho.getReadPtr());
|
||||
|
||||
screenManager->render();
|
||||
if (screenManager->getUIContext()->Text()) {
|
||||
screenManager->getUIContext()->Text()->OncePerFrame();
|
||||
}
|
||||
}
|
||||
|
||||
void NativeMessageReceived(const char *message, const char *value)
|
||||
|
2
native
2
native
@ -1 +1 @@
|
||||
Subproject commit d18b42427fa9c6ccb81254adcb1c45119be7b3c8
|
||||
Subproject commit 2583c67c3294f080d7edf7391860ab5c4421b196
|
Loading…
Reference in New Issue
Block a user