diff options
author | Christian König <[email protected]> | 2012-02-29 15:12:42 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2012-03-02 13:14:21 +0100 |
commit | 14766f820069ca987543918bce96410c481e5d20 (patch) | |
tree | fddc9d5ac54d9767c760cd6c93376c4dbc19c5b5 /src/gallium/auxiliary/vl/vl_compositor.h | |
parent | 74a4e9089488e7f341d21053bbf2d4aa52b99b70 (diff) |
vl/csc: simplify matrix handling
A csc matrix is only 4x3 not 4x4, also define a VDPAU compatible type for it.
Signed-off-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_compositor.h')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_compositor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_compositor.h b/src/gallium/auxiliary/vl/vl_compositor.h index f8f3dc0de98..6de6ca06521 100644 --- a/src/gallium/auxiliary/vl/vl_compositor.h +++ b/src/gallium/auxiliary/vl/vl_compositor.h @@ -35,6 +35,7 @@ #include "util/u_rect.h" #include "vl_types.h" +#include "vl_csc.h" struct pipe_context; @@ -126,7 +127,7 @@ vl_compositor_init_state(struct vl_compositor_state *state, struct pipe_context * set yuv -> rgba conversion matrix */ void -vl_compositor_set_csc_matrix(struct vl_compositor_state *settings, const float mat[16]); +vl_compositor_set_csc_matrix(struct vl_compositor_state *settings, const vl_csc_matrix *matrix); /** * reset dirty area, so it's cleared with the clear colour |