X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fview.cpp;h=4bbe5f07cc7db26f3e16290dfc3b31e0fcb72fa1;hp=54e4155191ca74ec2bf8002541c47e1efde99161;hb=4166b2c124b0bc652e9f8e5245488cdd2b86ebf0;hpb=9e1a33043e1242c4605f2a3a48bd948fc760d948 diff --git a/src/view.cpp b/src/view.cpp index 54e4155..4bbe5f0 100644 --- a/src/view.cpp +++ b/src/view.cpp @@ -215,13 +215,13 @@ void View::RenderRange(int width, int height, unsigned first_obj, unsigned last_ if (m_use_gpu_transform) { GLfloat glbounds[] = {static_cast(Float(m_bounds.x)), static_cast(Float(m_bounds.y)), static_cast(Float(m_bounds.w)), static_cast(Float(m_bounds.h)), - 0.0, 0.0, 640.0, 480.0}; + 0.0, 0.0, static_cast(width), static_cast(height)}; m_bounds_ubo.Upload(sizeof(float)*8, glbounds); } else { GLfloat glbounds[] = {0.0f, 0.0f, 1.0f, 1.0f, - 0.0f, 0.0f, 640.0f, 480.0f}; + 0.0f, 0.0f, float(width), float(height)}; m_bounds_ubo.Upload(sizeof(float)*8, glbounds); } m_bounds_dirty = false; @@ -330,7 +330,7 @@ void View::PrepareRender() m_object_renderers.at(type)->AddObjectToBuffers(id); // Use at() in case the document is corrupt TODO: Better error handling? // (Also, Wow I just actually used std::vector::at()) // (Also, I just managed to make it throw an exception because I'm a moron) - Debug("Object of type %d", type); + //Debug("Object of type %d", type); } // Finish the buffers