From: Pierre-Eric Pelloux-Prayer Date: Wed, 9 Jun 2021 08:32:41 +0000 (+0200) Subject: radeonsi: delay sample_pos_buffer creation until first use X-Git-Tag: upstream/21.2.3~1740 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=edb77ec3c770135280cc321326c7924b73fb535c;p=platform%2Fupstream%2Fmesa.git radeonsi: delay sample_pos_buffer creation until first use And use pipe_buffer_create_with_data instead of doing it manually. Reviewed-by: Marek Olšák Part-of: --- diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index f34e7e7..9eae6b1 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -717,11 +717,6 @@ static struct pipe_context *si_create_context(struct pipe_screen *screen, unsign if (!sctx->dirty_implicit_resources) goto fail; - sctx->sample_pos_buffer = - pipe_buffer_create(sctx->b.screen, 0, PIPE_USAGE_DEFAULT, sizeof(sctx->sample_positions)); - pipe_buffer_write(&sctx->b, sctx->sample_pos_buffer, 0, sizeof(sctx->sample_positions), - &sctx->sample_positions); - /* The remainder of this function initializes the gfx CS and must be last. */ assert(sctx->gfx_cs.current.cdw == 0); diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c index 25db0ca..9fefe1b 100644 --- a/src/gallium/drivers/radeonsi/si_state.c +++ b/src/gallium/drivers/radeonsi/si_state.c @@ -2947,6 +2947,11 @@ static void si_set_framebuffer_state(struct pipe_context *ctx, si_mark_atom_dirty(sctx, &sctx->atoms.s.msaa_config); si_mark_atom_dirty(sctx, &sctx->atoms.s.db_render_state); + if (!sctx->sample_pos_buffer) { + sctx->sample_pos_buffer = pipe_buffer_create_with_data(&sctx->b, 0, PIPE_USAGE_DEFAULT, + sizeof(sctx->sample_positions), + &sctx->sample_positions); + } constbuf.buffer = sctx->sample_pos_buffer; /* Set sample locations as fragment shader constants. */