Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
1674102a
Commit
1674102a
authored
Aug 23, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx/VideoEffects: fixed incomplete 'Anaglyph' implementation
parent
f3badede
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
328 additions
and
153 deletions
+328
-153
extras/package/macosx/Resources/English.lproj/VideoEffects.xib
...s/package/macosx/Resources/English.lproj/VideoEffects.xib
+321
-152
modules/gui/macosx/VideoEffects.h
modules/gui/macosx/VideoEffects.h
+2
-0
modules/gui/macosx/VideoEffects.m
modules/gui/macosx/VideoEffects.m
+5
-1
No files found.
extras/package/macosx/Resources/English.lproj/VideoEffects.xib
View file @
1674102a
This source diff could not be displayed because it is too large. You can
view the blob
instead.
modules/gui/macosx/VideoEffects.h
View file @
1674102a
...
...
@@ -126,6 +126,7 @@
IBOutlet
id
o_addlogo_pos_pop
;
IBOutlet
id
o_addlogo_transparency_lbl
;
IBOutlet
id
o_addlogo_transparency_sld
;
IBOutlet
id
o_anaglyph_ckb
;
}
/* generic */
...
...
@@ -184,4 +185,5 @@
-
(
IBAction
)
addTextModifierChanged
:(
id
)
sender
;
-
(
IBAction
)
enableAddLogo
:(
id
)
sender
;
-
(
IBAction
)
addLogoModifierChanged
:(
id
)
sender
;
-
(
IBAction
)
enableAnaglyph
:(
id
)
sender
;
@end
modules/gui/macosx/VideoEffects.m
View file @
1674102a
...
...
@@ -936,7 +936,6 @@ static VLCVideoEffects *_o_sharedInstance = nil;
[
self
setVideoFilter
:
"psychedelic"
on
:
[
o_psychedelic_ckb
state
]];
}
#pragma mark -
#pragma mark Miscellaneous
-
(
IBAction
)
enableAddText
:(
id
)
sender
...
...
@@ -986,4 +985,9 @@ static VLCVideoEffects *_o_sharedInstance = nil;
}
}
-
(
IBAction
)
enableAnaglyph
:(
id
)
sender
{
[
self
setVideoFilter
:
"anaglyph"
on
:
[
o_anaglyph_ckb
state
]];
}
@end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment