main: Add another useless quad

This commit is contained in:
Archie Hilton 2024-05-26 21:53:20 +01:00
parent a65885d2bf
commit 06e7e308cc
1 changed files with 3 additions and 0 deletions

View File

@ -117,10 +117,13 @@ static void init_opengl() {
init_shaders();
quads.push_back(new Quad(std::span<float>(verts), uniform_locations));
quads.push_back(new Quad(std::span<float>(verts), uniform_locations));
quads[0]->m_pos_y = 40;
quads[0]->m_pos_x = 40;
quads[1]->m_pos_y = 40;
quads[1]->m_pos_x = 400;
}
int main() {