From fb53952900212de636283083c08af1789125ed0c Mon Sep 17 00:00:00 2001 From: ExMix Date: Thu, 31 Oct 2013 15:40:39 +0300 Subject: [PATCH] remove texture format handling hacks --- 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 1bac2ef0d3..842241d993 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")); }