X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fview.h;h=ec5e97f9a66191cae7f15b7260ebf9c5dec42d80;hp=ca4c80837147c58f559c3b75ae29ba7be79c22eb;hb=7a83af96414ff156f56455ff7a5e7af01fc403b5;hpb=35e4687acd16a28fc923a75d254cdb4fd2fbc524 diff --git a/src/view.h b/src/view.h index ca4c808..ec5e97f 100644 --- a/src/view.h +++ b/src/view.h @@ -51,7 +51,9 @@ namespace IPDF }; 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 };