X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fview.h;h=e4254de0e52eb5f5ec5cba5b3ca6dfb0a09b5f54;hp=ca4c80837147c58f559c3b75ae29ba7be79c22eb;hb=da646c739f87bf28c5a7af2bc180b93b3444321b;hpb=35e4687acd16a28fc923a75d254cdb4fd2fbc524 diff --git a/src/view.h b/src/view.h index ca4c808..e4254de 100644 --- a/src/view.h +++ b/src/view.h @@ -48,10 +48,12 @@ namespace IPDF { float x0, y0; float x1, y1; - }; + } __attribute__((packed)); void PrepareRender(); // call when m_render_dirty is true - void UpdateObjBoundsVBO(); // call when m_buffer_dirty is true + void UpdateObjBoundsVBO(unsigned first_obj, unsigned last_obj); // call when m_buffer_dirty is true + + void RenderRange(int width, int height, unsigned first_obj, unsigned last_obj); bool m_use_gpu_transform; bool m_use_gpu_rendering; @@ -77,6 +79,7 @@ namespace IPDF #ifndef QUADTREE_DISABLED QuadTreeIndex m_current_quadtree_node; // The highest node we will traverse. int m_quadtree_max_depth; // The maximum quadtree depth. + void RenderQuadtreeNode(int width, int height, QuadTreeIndex node, int remaining_depth); #endif };