summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/hud/hud_context.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2016-12-25 21:07:47 +0100
committerMarek Olšák <[email protected]>2017-01-05 18:30:00 +0100
commit431742dbba46b66e61a22f7186ec82a818685a31 (patch)
treedc2d6bb2cc3d61d49958d6d93d507bd10762d839 /src/gallium/auxiliary/hud/hud_context.c
parent6d54cd75a893ff643745e711e0c5ba14a465f505 (diff)
gallium/hud: increase the vertex buffer size for text
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/hud/hud_context.c')
-rw-r--r--src/gallium/auxiliary/hud/hud_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/hud/hud_context.c b/src/gallium/auxiliary/hud/hud_context.c
index 805e1a7c4d1..7fa62a91866 100644
--- a/src/gallium/auxiliary/hud/hud_context.c
+++ b/src/gallium/auxiliary/hud/hud_context.c
@@ -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);