diff options
author | bobo1on1 <bob-nospam-@xbmc.org> | 2011-01-05 19:52:11 +0100 |
---|---|---|
committer | bobo1on1 <bob-nospam-@xbmc.org> | 2011-01-06 16:17:55 +0100 |
commit | d9a01f2f0bbc2788fb6a6023ad7a3f7cc79290e3 (patch) | |
tree | 00b63792cbc05e0004d6224e77e58cf44f5ed23b | |
parent | 9239237250db4a731d37d4ca0caab1425b052fc4 (diff) |
fixed: apply 8dcd0f59ad8773cfef17f7c350b43fb7d3ea7c43 to CLinuxRendererGLES
-rw-r--r-- | xbmc/cores/VideoRenderers/LinuxRendererGLES.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/xbmc/cores/VideoRenderers/LinuxRendererGLES.cpp b/xbmc/cores/VideoRenderers/LinuxRendererGLES.cpp index 26e5c6c5bb..c18bd48378 100644 --- a/xbmc/cores/VideoRenderers/LinuxRendererGLES.cpp +++ b/xbmc/cores/VideoRenderers/LinuxRendererGLES.cpp @@ -868,10 +868,6 @@ void CLinuxRendererGLES::RenderSinglePass(int index, int field) YUVFIELDS &fields = m_buffers[index].fields; YUVPLANES &planes = fields[field]; - // set scissors if we are not in fullscreen video - if ( !(g_graphicsContext.IsFullScreenVideo() || g_graphicsContext.IsCalibrating() )) - g_graphicsContext.ClipToViewWindow(); - if (m_reloadShaders) { m_reloadShaders = 0; @@ -980,10 +976,6 @@ void CLinuxRendererGLES::RenderMultiPass(int index, int field) YV12Image &im = m_buffers[index].image; YUVPLANES &planes = m_buffers[index].fields[field]; - // set scissors if we are not in fullscreen video - if ( !(g_graphicsContext.IsFullScreenVideo() || g_graphicsContext.IsCalibrating() )) - g_graphicsContext.ClipToViewWindow(); - if (m_reloadShaders) { m_reloadShaders = 0; @@ -1169,10 +1161,6 @@ void CLinuxRendererGLES::RenderSoftware(int index, int field) { YUVPLANES &planes = m_buffers[index].fields[field]; - // set scissors if we are not in fullscreen video - if ( !(g_graphicsContext.IsFullScreenVideo() || g_graphicsContext.IsCalibrating() )) - g_graphicsContext.ClipToViewWindow(); - glDisable(GL_DEPTH_TEST); // Y |