From 094f4a1eae368b951ab5381faa81805b401bc593 Mon Sep 17 00:00:00 2001 From: rachytski Date: Fri, 10 Aug 2012 18:50:02 +0300 Subject: [PATCH] fixed rendering issues on "Samsung Electronics - FIMG-3DSE" GPU. --- yg/resource_manager.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/yg/resource_manager.cpp b/yg/resource_manager.cpp index b64f9549f4..593493a5b2 100644 --- a/yg/resource_manager.cpp +++ b/yg/resource_manager.cpp @@ -409,6 +409,12 @@ namespace if (isGPU("Qualcomm", "Adreno", false)) m_texRtFormat = yg::Data8Bpp; + if (isGPU("Samsung Electronics", "FIMG-3DSE", false)) + { + m_texRtFormat = yg::Data8Bpp; + yg::gl::g_isMapBufferSupported = false; + } + if (isGPU("Broadcom", "VideoCore IV HW", false)) m_texRtFormat = yg::Data8Bpp;