vbo: increase the size of the immediate mode buffer to decrease draw count

Reviewed-by: Mathias Fröhlich <mathias.froehlich@web.de>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3766>
This commit is contained in:
Marek Olšák
2020-01-30 19:41:02 -05:00
committed by Marge Bot
parent 2fe771f4e9
commit a5f72c91e5
+1 -1
View File
@@ -49,7 +49,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
/**
* Size (in bytes) of the VBO to use for glBegin/glVertex/glEnd-style rendering.
*/
#define VBO_VERT_BUFFER_SIZE (1024 * 64)
#define VBO_VERT_BUFFER_SIZE (1024 * 512)
struct vbo_exec_eval1_map {