[vlc-commits] macosx: Add Anaglyph 3D interface
Zoran Turalija
git at videolan.org
Thu Aug 23 23:49:52 CEST 2012
vlc | branch: master | Zoran Turalija <zoran.turalija at gmail.com> | Thu Aug 23 15:45:29 2012 +0200| [f3badedef0ac973a390aea01ddc8bc5135195d6c] | committer: Felix Paul Kühne
macosx: Add Anaglyph 3D interface
Signed-off-by: Felix Paul Kühne <fkuehne at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f3badedef0ac973a390aea01ddc8bc5135195d6c
---
modules/gui/macosx/VideoEffects.m | 2 ++
1 file changed, 2 insertions(+)
diff --git a/modules/gui/macosx/VideoEffects.m b/modules/gui/macosx/VideoEffects.m
index 624a748..482aaf1 100644
--- a/modules/gui/macosx/VideoEffects.m
+++ b/modules/gui/macosx/VideoEffects.m
@@ -140,6 +140,7 @@ static VLCVideoEffects *_o_sharedInstance = nil;
[o_watereffect_ckb setTitle:_NS("Water effect")];
[o_waves_ckb setTitle:_NS("Waves")];
[o_psychedelic_ckb setTitle:_NS("Psychedelic")];
+ [o_anaglyph_ckb setTitle:_NS("Anaglyph 3D")];
[o_addtext_ckb setTitle:_NS("Add text")];
[o_addtext_text_lbl setStringValue:_NS("Text")];
@@ -221,6 +222,7 @@ static VLCVideoEffects *_o_sharedInstance = nil;
[o_watereffect_ckb setState: (NSInteger)strstr( psz_vfilters, "ripple")];
[o_waves_ckb setState: (NSInteger)strstr( psz_vfilters, "wave")];
[o_psychedelic_ckb setState: (NSInteger)strstr( psz_vfilters, "psychedelic")];
+ [o_anaglyph_ckb setState: (NSInteger)strstr( psz_vfilters, "anaglyph")];
free( psz_vfilters );
}
psz_vfilters = config_GetPsz( p_intf, "sub-source" );
More information about the vlc-commits
mailing list