Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
e834f5fc
Commit
e834f5fc
authored
May 30, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OpenGL: fix Win32 compilation
parent
093bcba4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
modules/video_output/opengl.c
modules/video_output/opengl.c
+0
-4
modules/video_output/opengl.h
modules/video_output/opengl.h
+3
-0
No files found.
modules/video_output/opengl.c
View file @
e834f5fc
...
...
@@ -41,12 +41,8 @@
# elif USE_OPENGL_ES == 1
# include <GLES/glext.h>
# else
# if defined(WIN32)
# include <GL/glew.h>
# else
# include <GL/glext.h>
# endif
# endif
#else
# if USE_OPENGL_ES == 2
# include <OpenGLES/ES2/gl.h>
...
...
modules/video_output/opengl.h
View file @
e834f5fc
...
...
@@ -40,6 +40,9 @@
# elif USE_OPENGL_ES == 1
# include <GLES/gl.h>
# else
# ifdef WIN32
# include <GL/glew.h>
# endif
# include <GL/gl.h>
# endif
#else
...
...
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