X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fview.cpp;h=a92da9bacf429725a36c0b0b980fa55e9f7474fe;hp=ada42ee29696514e1e71c3a4a47e2913248a6ba8;hb=57c3c69cbc7d9b3724874fd83cd001984ac21b6a;hpb=396b22d11e8041a00b33ca874a5be3853c09d6c0 diff --git a/src/view.cpp b/src/view.cpp index ada42ee..a92da9b 100644 --- a/src/view.cpp +++ b/src/view.cpp @@ -253,6 +253,11 @@ void View::Render(int width, int height) glEnableVertexAttribArray(0); glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 0, 0); + // Filled Circles + m_circle_filled_shader.Use(); + m_circle_ibo.Bind(); + glDrawElements(GL_LINES, m_rendered_circle*2, GL_UNSIGNED_INT, 0); + // Filled Rectangles m_rect_filled_shader.Use(); m_filled_ibo.Bind(); @@ -263,10 +268,6 @@ void View::Render(int width, int height) m_outline_ibo.Bind(); glDrawElements(GL_LINES, m_rendered_outline*2, GL_UNSIGNED_INT, 0); - // Filled Circles - m_circle_filled_shader.Use(); - m_circle_ibo.Bind(); - glDrawElements(GL_LINES, m_rendered_circle*2, GL_UNSIGNED_INT, 0); glDisableVertexAttribArray(0); if (m_colour.a < 1.0f) {