diff options
author | James Zhu <[email protected]> | 2019-03-06 12:01:07 -0500 |
---|---|---|
committer | Leo Liu <[email protected]> | 2019-03-15 11:53:15 -0400 |
commit | 998dca4dbb2b2866c2bc7e42e757af48717ed854 (patch) | |
tree | cab24ab83acf2fc28470791bbaf1c2bcc0487e33 /src/gallium/auxiliary/vl/vl_compositor.c | |
parent | b276e8358a726aaf010d277d361d5936450cd090 (diff) |
gallium/auxiliary/vl: Increase shader_params size
Increase shader_params size to pass sampler data to
compute shader during weave de-interlace.
Signed-off-by: James Zhu <[email protected]>
Acked-by: Leo Liu <[email protected]>
Tested-by: Bruno Milreu <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_compositor.c')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_compositor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_compositor.c b/src/gallium/auxiliary/vl/vl_compositor.c index a8f3620103b..12c58ff7436 100644 --- a/src/gallium/auxiliary/vl/vl_compositor.c +++ b/src/gallium/auxiliary/vl/vl_compositor.c @@ -802,7 +802,7 @@ vl_compositor_init_state(struct vl_compositor_state *s, struct pipe_context *pip pipe->screen, PIPE_BIND_CONSTANT_BUFFER, PIPE_USAGE_DEFAULT, - sizeof(csc_matrix) + 4*sizeof(float) + 6*sizeof(int) + sizeof(csc_matrix) + 6*sizeof(float) + 6*sizeof(int) ); if (!s->shader_params) |