Engine: Comment out text-area test code

This commit is contained in:
Riyyi
2022-09-26 13:00:00 +02:00
parent 67b4eb0cc0
commit 10a5b70520
4 changed files with 9 additions and 5 deletions
+3 -1
View File
@@ -48,7 +48,7 @@ Application::Application(s)
// Load assets
m_font = FontManager::the().load("assets/fnt/dejavu-sans");
// m_font = FontManager::the().load("assets/fnt/dejavu-sans");
// auto bla = GlTFFile::read("assets/gltf/box.glb");
// ruc::success("@{}@", bla.first.get());
@@ -84,6 +84,7 @@ int Application::run()
{
ruc::debug("Application startup");
#if 0
std::array<CharacterVertex, Renderer::vertexPerQuad> character;
// character.at(0).quad.textureCoordinates = { 0.0f, 0.0f }; // bottom left
@@ -131,6 +132,7 @@ int Application::run()
// borderedge
// bordercolor
// offset
#endif
while (!m_window->shouldClose()) {
+1 -1
View File
@@ -23,7 +23,7 @@ class WindowResizeEvent;
class Application : public ruc::Singleton<Application> {
public:
Application(s);
explicit Application(s);
virtual ~Application();
int run();
+4 -2
View File
@@ -16,12 +16,13 @@
namespace Inferno {
struct TextAreaComponent {
std::string content { "" };
std::string font { "" };
std::string content;
std::string font;
uint32_t fontSize { 0 };
uint32_t width { 0 };
uint32_t lines { 0 };
#if 0
TextAreaComponent() {}
TextAreaComponent(const std::string& content, const std::string& font,
uint32_t fontSize, uint32_t width, uint32_t lines)
@@ -32,6 +33,7 @@ struct TextAreaComponent {
, lines(lines)
{
}
#endif
// booleans?
// glm::vec4 outlineColor { 1.0f, 1.0f, 1.0f, 1.0f };
+1 -1
View File
@@ -55,7 +55,7 @@ public:
{
validEntity(entity);
return m_registry->emplace_or_replace<T>(entt::entity { entity }, std::forward<P>(parameters)...);
};
}
template<typename T>
size_t removeComponent(uint32_t entity) const