From e01f86c67b0bd955758366827cb8322aa1bec263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Ondra=C4=8Dka?= Date: Sun, 24 Apr 2022 18:58:14 +0200 Subject: [PATCH] r300: set PIPE_BIND_CONSTANT_BUFFER for const_uploader MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes constant uploads with nine. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/5966 CC: mesa-stable Signed-off-by: Pavel Ondračka Part-of: --- src/gallium/drivers/r300/r300_context.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index 3eb242798aa..4a8facd7caf 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -441,7 +441,9 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen, PIPE_BIND_CUSTOM, PIPE_USAGE_STREAM, 0); r300->context.stream_uploader = u_upload_create(&r300->context, 1024 * 1024, 0, PIPE_USAGE_STREAM, 0); - r300->context.const_uploader = r300->context.stream_uploader; + r300->context.const_uploader = u_upload_create(&r300->context, 1024 * 1024, + PIPE_BIND_CONSTANT_BUFFER, + PIPE_USAGE_STREAM, 0); r300->blitter = util_blitter_create(&r300->context); if (r300->blitter == NULL)