diff options
author | Johns <johns98@gmx.net> | 2012-01-19 22:58:02 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-01-19 22:58:02 +0100 |
commit | eb024558dece3d93b44f329da8626c358b7f4ace (patch) | |
tree | 7490987651c12ba452d49203c586dc1228a5bc6a | |
parent | 1593d5dd838350f4a70a8c0085b3916b887379ef (diff) | |
download | vdr-plugin-softhddevice-eb024558dece3d93b44f329da8626c358b7f4ace.tar.gz vdr-plugin-softhddevice-eb024558dece3d93b44f329da8626c358b7f4ace.tar.bz2 |
VDPAU: Changed OSD alpha calculation.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | video.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ User johns Date: Release Version 0.3.6 + VDPAU: Changed OSD alpha calculation. Fix bug: Used VideoSharpen for denoise settings. Instant update deinterlace/... configuration changes. Fix bug: AudioExit called without AudioInit crash. @@ -5464,7 +5464,7 @@ static void VdpauMixOsd(void) // blend_state.struct_version = VDP_OUTPUT_SURFACE_RENDER_BLEND_STATE_VERSION; blend_state.blend_factor_source_color = - VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE; + VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_SRC_ALPHA; blend_state.blend_factor_source_alpha = VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE; blend_state.blend_factor_destination_color = |