Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
d114a2ff
Commit
d114a2ff
authored
May 23, 2018
by
Thomas Guillem
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opengl: make getProcAddress mandatory
parent
f28f6b32
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
include/vlc_opengl.h
include/vlc_opengl.h
+1
-1
No files found.
include/vlc_opengl.h
View file @
d114a2ff
...
...
@@ -109,7 +109,7 @@ static inline void vlc_gl_Swap(vlc_gl_t *gl)
static
inline
void
*
vlc_gl_GetProcAddress
(
vlc_gl_t
*
gl
,
const
char
*
name
)
{
return
(
gl
->
getProcAddress
!=
NULL
)
?
gl
->
getProcAddress
(
gl
,
name
)
:
NULL
;
return
gl
->
getProcAddress
(
gl
,
name
);
}
VLC_API
vlc_gl_t
*
vlc_gl_surface_Create
(
vlc_object_t
*
,
...
...
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