CLeaned up that last commit a bit.
This commit is contained in:
@ -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++;
|
||||
}
|
||||
|
||||
|
@ -36,7 +36,7 @@ void Dawn::helloWorldScene(Scene &s) {
|
||||
quadMesh,
|
||||
L"Hello World!",
|
||||
position,
|
||||
true
|
||||
true
|
||||
);
|
||||
|
||||
auto quadRenderer = quad->addComponent<MeshRenderer>();
|
||||
|
Reference in New Issue
Block a user