From f8bae4bc813dbde5d5e2ce86b34d56030c568503 Mon Sep 17 00:00:00 2001 From: ExMix Date: Thu, 7 Nov 2013 20:58:14 +0300 Subject: [PATCH] samsung s4 GT-i9500 fix. --- graphics/resource_manager.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/graphics/resource_manager.cpp b/graphics/resource_manager.cpp index 842241d993..1bac2ef0d3 100644 --- a/graphics/resource_manager.cpp +++ b/graphics/resource_manager.cpp @@ -236,17 +236,17 @@ namespace /// general case m_texRtFormat = graphics::Data4Bpp; - /*if (isGPU("Qualcomm", "Adreno", false)) + if (isGPU("Qualcomm", "Adreno", false)) m_texRtFormat = graphics::Data8Bpp; if (isGPU("Samsung Electronics", "FIMG-3DSE", false)) - m_texRtFormat = graphics::Data8Bpp;*/ + m_texRtFormat = graphics::Data8Bpp; if (isGPU("Broadcom", "VideoCore IV HW", false)) m_texRtFormat = graphics::Data8Bpp; - /*if (isGPU("Imagination Technologies", "PowerVR MBX", false)) - m_texRtFormat = graphics::Data8Bpp;*/ + if (isGPU("Imagination Technologies", "PowerVR MBX", false)) + m_texRtFormat = graphics::Data8Bpp; LOG(LINFO, ("selected", graphics::formatName(m_texRtFormat), "format for tile textures")); }