xbmc (gotham): update to xbmc-6aa6247

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2013-06-19 06:03:32 +02:00
parent fbcc2e462d
commit 9381040a67
11 changed files with 31 additions and 2 deletions

View File

@ -21,7 +21,7 @@
PKG_NAME="xbmc-theme-Confluence"
PKG_VERSION="12.2.0"
if [ "$XBMC" = "master" ]; then
PKG_VERSION="57f529b"
PKG_VERSION="6aa6247"
elif [ "$XBMC" = "xbmc-aml" ]; then
PKG_VERSION="aml-frodo-d9119f2"
fi

View File

@ -21,7 +21,7 @@
PKG_NAME="xbmc"
PKG_VERSION="12.2.0"
if [ "$XBMC" = "master" ]; then
PKG_VERSION="57f529b"
PKG_VERSION="6aa6247"
elif [ "$XBMC" = "xbmc-aml" ]; then
PKG_VERSION="aml-frodo-d9119f2"
fi

View File

@ -0,0 +1,29 @@
From 7dcf55c9560172db7e9daee2c20413cd8c9549dd Mon Sep 17 00:00:00 2001
From: xbmc <fernetmenta@online.de>
Date: Sun, 16 Jun 2013 13:23:19 +0200
Subject: [PATCH] renderer: delete fence on uninit
---
xbmc/cores/VideoRenderers/LinuxRendererGL.cpp | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/xbmc/cores/VideoRenderers/LinuxRendererGL.cpp b/xbmc/cores/VideoRenderers/LinuxRendererGL.cpp
index c663423..858d39d 100644
--- a/xbmc/cores/VideoRenderers/LinuxRendererGL.cpp
+++ b/xbmc/cores/VideoRenderers/LinuxRendererGL.cpp
@@ -1164,7 +1164,12 @@ void CLinuxRendererGL::UnInit()
// YV12 textures
for (int i = 0; i < NUM_BUFFERS; ++i)
+ {
(this->*m_textureDelete)(i);
+ if (m_buffers[i].fence)
+ glDeleteSync(m_buffers[i].fence);
+ m_buffers[i].fence = None;
+ }
// cleanup framebuffer object if it was in use
m_fbo.fbo.Cleanup();
--
1.8.1.6