summaryrefslogtreecommitdiff
path: root/ui.hpp
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2025-01-24 00:37:15 +1100
committerquou <quou@disroot.org>2025-01-24 00:37:15 +1100
commit3afcec1798977d3309a5359b56b9534d87e70b6b (patch)
treec1d98931c1f5729a2d8968084e3e7301b4aa18a7 /ui.hpp
parent00c5ea3c0f4ad3b22726d92c23db8a4c37a3b0c9 (diff)
increase UI command buffer size
Diffstat (limited to 'ui.hpp')
-rw-r--r--ui.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.hpp b/ui.hpp
index 1ac3602..576f7a0 100644
--- a/ui.hpp
+++ b/ui.hpp
@@ -32,7 +32,7 @@ struct UI {
struct Renderer {
static constexpr int grid_size = 16;
- static constexpr int cmd_buf_size = 1024 * 8;
+ static constexpr int cmd_buf_size = 1024 * 128;
Rect bound;
Rect clip;
Colour* pixels;