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
2d55c0f1
Commit
2d55c0f1
authored
Apr 12, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/video_output/opengl.c: fixed snapshots in opengl mode.
parent
be7f00e1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
modules/video_output/opengl.c
modules/video_output/opengl.c
+10
-3
No files found.
modules/video_output/opengl.c
View file @
2d55c0f1
...
@@ -661,10 +661,17 @@ static int Control( vout_thread_t *p_vout, int i_query, va_list args )
...
@@ -661,10 +661,17 @@ static int Control( vout_thread_t *p_vout, int i_query, va_list args )
{
{
vout_sys_t
*
p_sys
=
p_vout
->
p_sys
;
vout_sys_t
*
p_sys
=
p_vout
->
p_sys
;
switch
(
i_query
)
{
case
VOUT_SNAPSHOT
:
return
vout_vaControlDefault
(
p_vout
,
i_query
,
args
);
default:
if
(
p_sys
->
p_vout
->
pf_control
)
if
(
p_sys
->
p_vout
->
pf_control
)
return
p_sys
->
p_vout
->
pf_control
(
p_sys
->
p_vout
,
i_query
,
args
);
return
p_sys
->
p_vout
->
pf_control
(
p_sys
->
p_vout
,
i_query
,
args
);
else
else
return
vout_vaControlDefault
(
p_vout
,
i_query
,
args
);
return
vout_vaControlDefault
(
p_vout
,
i_query
,
args
);
}
}
}
static
int
InitTextures
(
vout_thread_t
*
p_vout
)
static
int
InitTextures
(
vout_thread_t
*
p_vout
)
...
...
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