diff options
author | bobo1on1 <bob-nospam-@xbmc.org> | 2011-07-16 19:02:58 +0200 |
---|---|---|
committer | bobo1on1 <bob-nospam-@xbmc.org> | 2011-07-16 19:09:17 +0200 |
commit | 8c582258fe8072b5b2d3c74faef342172d4a08d8 (patch) | |
tree | b8528fae6ed0f85451f7e2c2a51f6047fb0c9405 | |
parent | 3789b2129513c02c64fe3caf60678961933b64e8 (diff) |
fixed: c/p error in CRenderCaptureGL
-rw-r--r-- | xbmc/cores/VideoRenderers/RenderCapture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/cores/VideoRenderers/RenderCapture.cpp b/xbmc/cores/VideoRenderers/RenderCapture.cpp index fde0d217c4..2259f1b30b 100644 --- a/xbmc/cores/VideoRenderers/RenderCapture.cpp +++ b/xbmc/cores/VideoRenderers/RenderCapture.cpp @@ -81,7 +81,7 @@ void CRenderCaptureGL::BeginRender() { if (!g_Windowing.IsExtSupported("GL_ARB_occlusion_query")) CLog::Log(LOGWARNING, "CRenderCaptureGL: GL_ARB_occlusion_query not supported, performance might suffer"); - if (!g_Windowing.IsExtSupported("GL_ARB_occlusion_query")) + if (!g_Windowing.IsExtSupported("GL_ARB_pixel_buffer_object")) CLog::Log(LOGWARNING, "CRenderCaptureGL: GL_ARB_pixel_buffer_object not supported, performance might suffer"); } #endif |