CLeaned up that last commit a bit.

This commit is contained in:
2023-12-06 09:17:01 -06:00
parent a40874ceee
commit cc98571a01
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( glm::vec2 TrueTypeTexture::bufferStringToMesh(
std::shared_ptr<Mesh> mesh, std::shared_ptr<Mesh> mesh,
const std::wstring text, const std::wstring text,
glm::vec2 position, glm::vec2 &position,
bool_t flipY bool_t flipY
) { ) {
assertNotNull(mesh, "Mesh must be supplied and not null"); assertNotNull(mesh, "Mesh must be supplied and not null");
@ -184,7 +184,6 @@ glm::vec2 TrueTypeTexture::bufferStringToMesh(
position += info.advance; position += info.advance;
size += info.advance; size += info.advance;
// Increment i
i++; i++;
} }

View File

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