mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: No need to change VSync if same value
--HG-- branch : develop
This commit is contained in:
parent
b29441f22e
commit
cb8bb5f6f4
1 changed files with 3 additions and 0 deletions
|
@ -2295,6 +2295,9 @@ void CDriverGL::setSwapVBLInterval(uint interval)
|
||||||
|
|
||||||
bool res = true;
|
bool res = true;
|
||||||
|
|
||||||
|
// don't try to change VBL if interval didn't change
|
||||||
|
if (_Interval == interval) return;
|
||||||
|
|
||||||
#ifdef USE_OPENGLES
|
#ifdef USE_OPENGLES
|
||||||
res = eglSwapInterval(_EglDisplay, interval) == EGL_TRUE;
|
res = eglSwapInterval(_EglDisplay, interval) == EGL_TRUE;
|
||||||
#elif defined(NL_OS_WINDOWS)
|
#elif defined(NL_OS_WINDOWS)
|
||||||
|
|
Loading…
Reference in a new issue