From d2d74c74413ef496b946ea87a2d50517fd2ab320 Mon Sep 17 00:00:00 2001 From: ExMix Date: Mon, 24 Jun 2013 12:57:51 +0300 Subject: [PATCH] switch on readpixels for PowerVR SGX530 gpu --- graphics/resource_manager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/graphics/resource_manager.cpp b/graphics/resource_manager.cpp index f48416e94f..0341630476 100644 --- a/graphics/resource_manager.cpp +++ b/graphics/resource_manager.cpp @@ -275,6 +275,8 @@ namespace // glReadPixels instead of glFinish to synchronize. if (isGPUVersion("Imagination Technologies", "PowerVR SGX 540", "OpenGL ES 2.0")) m_useReadPixelsToSynchronize = true; + if (isGPU("Imagination Technologies", "PowerVR SGX 530", false)) + m_useReadPixelsToSynchronize = true; #endif LOG(LINFO, ("selected", graphics::formatName(m_texRtFormat), "format for tile textures"));