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
81072d68
Commit
81072d68
authored
Jun 02, 2011
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Used WGL_EXT_swap_control in glwin32.
It avoid tearing depending on the default settings.
parent
8e18506a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
modules/video_output/msw/glwin32.c
modules/video_output/msw/glwin32.c
+10
-0
No files found.
modules/video_output/msw/glwin32.c
View file @
81072d68
...
@@ -39,6 +39,7 @@
...
@@ -39,6 +39,7 @@
#endif
#endif
#include "../opengl.h"
#include "../opengl.h"
#include <GL/wglew.h>
#include "common.h"
#include "common.h"
/*****************************************************************************
/*****************************************************************************
...
@@ -108,6 +109,15 @@ static int Open(vlc_object_t *object)
...
@@ -108,6 +109,15 @@ static int Open(vlc_object_t *object)
sys
->
hGLRC
=
wglCreateContext
(
sys
->
hGLDC
);
sys
->
hGLRC
=
wglCreateContext
(
sys
->
hGLDC
);
wglMakeCurrent
(
sys
->
hGLDC
,
sys
->
hGLRC
);
wglMakeCurrent
(
sys
->
hGLDC
,
sys
->
hGLRC
);
const
char
*
extensions
=
(
const
char
*
)
glGetString
(
GL_EXTENSIONS
);
#ifdef WGL_EXT_swap_control
if
(
HasExtension
(
extensions
,
"WGL_EXT_swap_control"
))
{
PFNWGLSWAPINTERVALEXTPROC
SwapIntervalEXT
=
(
PFNWGLSWAPINTERVALEXTPROC
)
wglGetProcAddress
(
"wglSwapIntervalEXT"
);
if
(
SwapIntervalEXT
)
SwapIntervalEXT
(
1
);
}
#endif
/* */
/* */
sys
->
gl
.
lock
=
NULL
;
sys
->
gl
.
lock
=
NULL
;
sys
->
gl
.
unlock
=
NULL
;
sys
->
gl
.
unlock
=
NULL
;
...
...
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