summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristophe Thommeret <hftom@free.fr>2009-01-29 14:18:44 +0000
committerChristophe Thommeret <hftom@free.fr>2009-01-29 14:18:44 +0000
commitbff2439dc7d42332c6d81a8f46095e2274f068fe (patch)
treea65499dfbbcafe6b1f463cd58e62905a2883ac11 /src
parentfbbbd1709643e728166f04df54cc7dc851f146b6 (diff)
downloadxine-lib-bff2439dc7d42332c6d81a8f46095e2274f068fe.tar.gz
xine-lib-bff2439dc7d42332c6d81a8f46095e2274f068fe.tar.bz2
Blend types list termination.
Diffstat (limited to 'src')
-rw-r--r--src/video_out/video_out_vdpau.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/video_out/video_out_vdpau.c b/src/video_out/video_out_vdpau.c
index 5f1857362..58a775b5a 100644
--- a/src/video_out/video_out_vdpau.c
+++ b/src/video_out/video_out_vdpau.c
@@ -60,15 +60,14 @@ const char *vdpau_deinterlace_methods[] = {
NULL
};
-
-
VdpOutputSurfaceRenderBlendState blend = { VDP_OUTPUT_SURFACE_RENDER_BLEND_STATE_VERSION,
- VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE ,
+ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE,
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_SRC_COLOR,
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE,
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA,
VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_ADD,
- VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_ADD };
+ VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_ADD,
+ 0 };