gallium/hud: increase the vertex buffer size for text

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
Marek Olšák 2016-12-25 21:07:47 +01:00
parent 6d54cd75a8
commit 431742dbba
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@ hud_draw(struct hud_context *hud, struct pipe_resource *tex)
/* prepare vertex buffers */
hud_alloc_vertices(hud, &hud->bg, 4 * 256, 2 * sizeof(float));
hud_alloc_vertices(hud, &hud->whitelines, 4 * 256, 2 * sizeof(float));
hud_alloc_vertices(hud, &hud->text, 4 * 1024, 4 * sizeof(float));
hud_alloc_vertices(hud, &hud->text, 16 * 1024, 4 * sizeof(float));
/* prepare all graphs */
hud_batch_query_update(hud->batch_query);