CLeaned up that last commit a bit.

This commit is contained in:
2023-12-06 09:17:01 -06:00
parent fb81ffb564
commit e25ae79b37
2 changed files with 2 additions and 3 deletions

View File

@ -133,7 +133,7 @@ struct TrueTypeCharacter TrueTypeTexture::getCharacterData(wchar_t c) {
glm::vec2 TrueTypeTexture::bufferStringToMesh(
std::shared_ptr<Mesh> mesh,
const std::wstring text,
glm::vec2 position,
glm::vec2 &position,
bool_t flipY
) {
assertNotNull(mesh, "Mesh must be supplied and not null");
@ -184,7 +184,6 @@ glm::vec2 TrueTypeTexture::bufferStringToMesh(
position += info.advance;
size += info.advance;
// Increment i
i++;
}

View File

@ -36,7 +36,7 @@ void Dawn::helloWorldScene(Scene &s) {
quadMesh,
L"Hello World!",
position,
true
true
);
auto quadRenderer = quad->addComponent<MeshRenderer>();