implement label drawable

This commit is contained in:
ohyzha
2024-08-22 13:29:18 +03:00
parent f7f4897aff
commit a2923966fa
7 changed files with 682 additions and 1 deletions

View File

@@ -11,6 +11,7 @@
#include "ExampleApps/TexturedCubeExampleApp.hpp"
#include "ExampleApps/BillboardExampleApp.hpp"
#include "ExampleApps/TextExampleApp.hpp"
#include "ExampleApps/LabelDrawableExampleApp.hpp"
#include <vector>
namespace OpenVulkano
@@ -20,6 +21,7 @@ namespace OpenVulkano
{ "Moving Cube Example App", &MovingCubeApp::Create },
{ "Textured Cube Example App", &TexturedCubeExampleApp::Create },
{ "Billboard Example App", &BillboardExampleApp::Create },
{ "Text Example App", &TextExampleApp::Create }
{ "Text Example App", &TextExampleApp::Create },
{ "Label Example App", &LabelDrawableExampleApp::Create }
};
}