Create basic GUI components

This commit is contained in:
2021-03-10 21:46:33 +01:00
parent 153e3d30fb
commit 6a3ae8447e
7 changed files with 394 additions and 0 deletions

View File

@@ -45,6 +45,11 @@ public class NanoVGGUI implements GUI {
nvgEndFrame(context);
}
@Override
public void beginPath() {
nvgBeginPath(context);
}
@Override
public void drawRectangle(float x, float y, float w, float h) {
nvgRect(context, x, y, w, h);