(GLSM) Prevent warning

This commit is contained in:
twinaphex 2016-09-22 04:09:10 +02:00
parent 017bf34d71
commit 7dc297edfc

View File

@ -1848,6 +1848,8 @@ void *rglFenceSync(GLenum condition, GLbitfield flags)
{
#if defined(HAVE_OPENGL) || defined(HAVE_OPENGLES) && defined(HAVE_OPENGLES3)
return (GLsync)glFenceSync(condition, flags);
#else
return NULL;
#endif
}