diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-07-14 16:58:57 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-07-16 19:59:43 +0000 |
commit | 3d13870ee2c79020aef0bdb7b36f7ba8f7e9d069 (patch) | |
tree | e133d93c1ee1a5e7f0c0c502361967ba07bb6bc1 /src/gallium/drivers | |
parent | e16f59c31621cdba819d7aed07d1457c838121bd (diff) |
panfrost: Call util_blitter_save_fragment_constant_buffer_slot
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5858>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/panfrost/pan_blit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/panfrost/pan_blit.c b/src/gallium/drivers/panfrost/pan_blit.c index 6361e7c7737..420f85cca48 100644 --- a/src/gallium/drivers/panfrost/pan_blit.c +++ b/src/gallium/drivers/panfrost/pan_blit.c @@ -57,6 +57,8 @@ panfrost_blitter_save( util_blitter_save_fragment_sampler_views(blitter, ctx->sampler_view_count[PIPE_SHADER_FRAGMENT], (struct pipe_sampler_view **)&ctx->sampler_views[PIPE_SHADER_FRAGMENT]); + util_blitter_save_fragment_constant_buffer_slot(blitter, + ctx->constant_buffer[PIPE_SHADER_FRAGMENT].cb); } static bool |