diff options
author | Marek Olšák <[email protected]> | 2018-01-27 02:05:23 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-02-17 04:20:55 +0100 |
commit | 16be55da94ea5e68edc1da8b354402d85306ab20 (patch) | |
tree | d9e1b48f7fbaa40e019526a6b84c8e928aefc378 /src/gallium/auxiliary/vl | |
parent | 8e7222f4e5d624313bf972637d22b49fc7200383 (diff) |
gallium: use PIPE_CAP_CONSTBUF0_FLAGS
Diffstat (limited to 'src/gallium/auxiliary/vl')
-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 67ad7f5beea..725bfd9126e 100644 --- a/src/gallium/auxiliary/vl/vl_compositor.c +++ b/src/gallium/auxiliary/vl/vl_compositor.c @@ -1437,7 +1437,7 @@ vl_compositor_init_state(struct vl_compositor_state *s, struct pipe_context *pip * Const buffer contains the color conversion matrix and bias vectors */ /* XXX: Create with IMMUTABLE/STATIC... although it does change every once in a long while... */ - s->csc_matrix = pipe_buffer_create + s->csc_matrix = pipe_buffer_create_const0 ( pipe->screen, PIPE_BIND_CONSTANT_BUFFER, |