|
From: Chetan D. <che...@as...> - 2003-11-10 20:37:43
|
I found out that, one of the bottlenecks for my application is rendering of many SVGs. I feel, the performance will improve if something like layoutInGLVolume can be implmented in Sugar. For example, instead of executing, /glPushMatrix(); glTranslatef(...); Scalef(...); sugSvgRenderer->render(); glPopMartrix(); /in every render call, execute, /sugSvgRenderer->layoutInGLVolume/Area(...); /once and then just /sugSvgRenderer->render(); /in each render call ................same way in which we handle glam widget geometries. - Chetan |