Blender Git Loki
Git Commits -> Revision 0cc76d8
Revision 0cc76d8 by Nicholas Bishop (master) December 4, 2006, 05:36 (GMT) |
Large change to the way sculptmode drawing works. The default is now to draw using the standard drawing functions. Enabling the "Partial Redraw" item in the sculpt menu will turn on the optimizations which stores unmodified parts of the color buffer and only redraws the polygons that are within the modified area(s). The Partial Redraw option uses the accumulation buffer to store the copy, and unfortunately this is not accelerated on older cards. There are alternatives, e.g. drawing to an auxiliary buffer or downloading the data from the graphics card with glReadPixels, but there's no guarantee that these will run at an acceptable speed on older graphics cards either. For the cards that do accelerate the accumulation buffer (for nvidia cards, I would assume that is at least FX5200 and up, and maybe earlier) it provides a very significant speedup. |
Commit Details:
Full Hash: 0cc76d831cdd7c58024d480fa64e8a3798afad11
SVN Revision: 9181
Parent Commit: c520a2a
Lines Changed: +25, -20