aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Kaijser <martijn@xbmc.org>2019-01-12 18:18:22 +0100
committerGitHub <noreply@github.com>2019-01-12 18:18:22 +0100
commitd7c969437de68fe5b4172c6dd513ec8ce84e4d18 (patch)
tree82d9d5bbf9a387d120e2c3b1dea2bcc490ed3692
parent5d0c31a0bd5cea151f0d789a711dafc001d8f551 (diff)
parent215333ceed22312550cb91e5f291d7040079a0ea (diff)
Merge pull request #15238 from fritsch/eglswap
GLContextEGL: Remove logging
-rw-r--r--xbmc/windowing/X11/GLContextEGL.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/xbmc/windowing/X11/GLContextEGL.cpp b/xbmc/windowing/X11/GLContextEGL.cpp
index 272cd96214..2b6b5d35e3 100644
--- a/xbmc/windowing/X11/GLContextEGL.cpp
+++ b/xbmc/windowing/X11/GLContextEGL.cpp
@@ -433,7 +433,6 @@ void CGLContextEGL::SwapBuffers()
if ((msc1 - m_sync.msc1) > 2)
{
m_sync.cont = 0;
- CLog::Log(LOGDEBUG, "CGLContextEGL::SwapBuffers: sync reset");
}
// we want to block in SwapBuffers
@@ -449,7 +448,6 @@ void CGLContextEGL::SwapBuffers()
{
m_sync.interval = (ust1 - m_sync.ust1) / (msc1 - m_sync.msc1);
m_sync.cont++;
- CLog::Log(LOGDEBUG, "CGLContextEGL::SwapBuffers: sync interval: %ld", m_sync.interval);
}
}
else if (m_sync.cont == 5 && m_omlSync)