From 2dff0c6bbe755f596a9930c415da6a1dbfe50b19 Mon Sep 17 00:00:00 2001 From: ExMix Date: Sat, 15 Aug 2015 17:04:21 +0300 Subject: [PATCH] [drape] optimizations --- base/shared_buffer_manager.cpp | 6 ++++ base/shared_buffer_manager.hpp | 2 ++ drape/drape.pro | 5 ++-- drape/shaders/area_vertex_shader.vsh | 13 ++++++++ drape/shaders/shader_index.txt | 1 + drape/texture_manager.cpp | 2 +- drape/utils/vertex_decl.cpp | 31 ++++++++++++++++++++ drape/utils/vertex_decl.hpp | 11 +++++++ drape_frontend/area_shape.cpp | 9 +++--- iphone/Maps/Platform/opengl/iosOGLContext.h | 2 +- iphone/Maps/Platform/opengl/iosOGLContext.mm | 11 +++++-- map/framework.cpp | 1 + 12 files changed, 82 insertions(+), 12 deletions(-) create mode 100644 drape/shaders/area_vertex_shader.vsh diff --git a/base/shared_buffer_manager.cpp b/base/shared_buffer_manager.cpp index 3c6f1d5f1a..0e530e627f 100644 --- a/base/shared_buffer_manager.cpp +++ b/base/shared_buffer_manager.cpp @@ -7,6 +7,12 @@ SharedBufferManager & SharedBufferManager::instance() return i; } +void SharedBufferManager::clearReserved() +{ + threads::MutexGuard g(m_mutex); + m_sharedBuffers.clear(); +} + SharedBufferManager::shared_buffer_ptr_t SharedBufferManager::reserveSharedBuffer(size_t s) { threads::MutexGuard g(m_mutex); diff --git a/base/shared_buffer_manager.hpp b/base/shared_buffer_manager.hpp index 297d469d53..c73b9d9215 100644 --- a/base/shared_buffer_manager.hpp +++ b/base/shared_buffer_manager.hpp @@ -21,6 +21,8 @@ private: public: static SharedBufferManager & instance(); + void clearReserved(); + shared_buffer_ptr_t reserveSharedBuffer(size_t s); void freeSharedBuffer(size_t s, shared_buffer_ptr_t buf); diff --git a/drape/drape.pro b/drape/drape.pro index d8f1ffc0ee..f359d45be5 100644 --- a/drape/drape.pro +++ b/drape/drape.pro @@ -26,7 +26,6 @@ OTHER_FILES += \ shaders/texturing_fragment_shader.fsh \ shaders/texturing_vertex_shader.vsh \ shaders/user_mark.vsh \ - -DISTFILES += \ shaders/circle_shader.fsh \ - shaders/circle_shader.vsh + shaders/circle_shader.vsh \ + shaders/area_vertex_shader.vsh \ diff --git a/drape/shaders/area_vertex_shader.vsh b/drape/shaders/area_vertex_shader.vsh new file mode 100644 index 0000000000..66f51554ea --- /dev/null +++ b/drape/shaders/area_vertex_shader.vsh @@ -0,0 +1,13 @@ +attribute vec3 a_position; +attribute vec2 a_colorTexCoords; + +uniform mat4 modelView; +uniform mat4 projection; + +varying vec2 v_colorTexCoords; + +void main(void) +{ + gl_Position = vec4(a_position, 1) * modelView * projection; + v_colorTexCoords = a_colorTexCoords; +} diff --git a/drape/shaders/shader_index.txt b/drape/shaders/shader_index.txt index d1a03dc76e..936656d990 100644 --- a/drape/shaders/shader_index.txt +++ b/drape/shaders/shader_index.txt @@ -1,4 +1,5 @@ TEXT_PROGRAM text_vertex_shader.vsh text_fragment_shader.fsh +AREA_PROGRAM area_vertex_shader.vsh texturing_fragment_shader.fsh TEXTURING_PROGRAM texturing_vertex_shader.vsh texturing_fragment_shader.fsh LINE_PROGRAM line_vertex_shader.vsh line_fragment_shader.fsh CAP_JOIN_PROGRAM circle_shader.vsh circle_shader.fsh diff --git a/drape/texture_manager.cpp b/drape/texture_manager.cpp index 16cf7b7648..f2790e8c1e 100644 --- a/drape/texture_manager.cpp +++ b/drape/texture_manager.cpp @@ -21,7 +21,7 @@ namespace dp { -uint32_t const kMaxTextureSize = 2048; +uint32_t const kMaxTextureSize = 512; uint32_t const kStippleTextureWidth = 512; uint32_t const kMinStippleTextureHeight = 64; uint32_t const kMinColorTextureSize = 32; diff --git a/drape/utils/vertex_decl.cpp b/drape/utils/vertex_decl.cpp index 0627471fbc..e0420de937 100644 --- a/drape/utils/vertex_decl.cpp +++ b/drape/utils/vertex_decl.cpp @@ -8,6 +8,7 @@ namespace enum VertexType { + Area, SolidTexturing, TextStatic, TextDynamic, @@ -25,6 +26,18 @@ struct BindingNode typedef dp::BindingInfo (*TInitFunction)(); +dp::BindingInfo AreaBindingInit() +{ + static_assert(sizeof(AreaVertex) == (sizeof(AreaVertex::TPosition) + + sizeof(AreaVertex::TTexCoord)), ""); + + dp::BindingFiller filler(2); + filler.FillDecl("a_position"); + filler.FillDecl("a_colorTexCoords"); + + return filler.m_info; +} + dp::BindingInfo SolidTexturingBindingInit() { static_assert(sizeof(SolidTexturingVertex) == (sizeof(SolidTexturingVertex::TPosition) + @@ -108,6 +121,7 @@ dp::BindingInfo RouteBindingInit() BindingNode g_bindingNodes[TypeCount]; TInitFunction g_initFunctions[TypeCount] = { + &AreaBindingInit, &SolidTexturingBindingInit, &TextStaticBindingInit, &TextDynamicBindingInit, @@ -130,6 +144,23 @@ dp::BindingInfo const & GetBinding(VertexType type) } // namespace +AreaVertex::AreaVertex() + : m_position(0.0, 0.0, 0.0) + , m_colorTexCoord(0.0, 0.0) +{ +} + +AreaVertex::AreaVertex(TPosition const & position, TTexCoord const & colorTexCoord) + : m_position(position) + , m_colorTexCoord(colorTexCoord) +{ +} + +dp::BindingInfo const & AreaVertex::GetBindingInfo() +{ + return GetBinding(Area); +} + SolidTexturingVertex::SolidTexturingVertex() : m_position(0.0, 0.0, 0.0) , m_normal(0.0, 0.0) diff --git a/drape/utils/vertex_decl.hpp b/drape/utils/vertex_decl.hpp index e6b5703d5f..794f4f0261 100644 --- a/drape/utils/vertex_decl.hpp +++ b/drape/utils/vertex_decl.hpp @@ -15,6 +15,17 @@ struct BaseVertex using TTexCoord = glsl::vec2; }; +struct AreaVertex : BaseVertex +{ + AreaVertex(); + AreaVertex(TPosition const & position, TTexCoord const & colorTexCoord); + + TPosition m_position; + TTexCoord m_colorTexCoord; + + static dp::BindingInfo const & GetBindingInfo(); +}; + struct SolidTexturingVertex : BaseVertex { SolidTexturingVertex(); diff --git a/drape_frontend/area_shape.cpp b/drape_frontend/area_shape.cpp index 56763a6bc4..7ae49ce7fd 100644 --- a/drape_frontend/area_shape.cpp +++ b/drape_frontend/area_shape.cpp @@ -27,20 +27,19 @@ void AreaShape::Draw(ref_ptr batcher, ref_ptr t textures->GetColorRegion(m_params.m_color, region); glsl::vec2 const colorPoint = glsl::ToVec2(region.GetTexRect().Center()); - buffer_vector vertexes; + buffer_vector vertexes; vertexes.resize(m_vertexes.size()); transform(m_vertexes.begin(), m_vertexes.end(), vertexes.begin(), [&colorPoint, this](m2::PointF const & vertex) { - return gpu::SolidTexturingVertex(glsl::vec3(glsl::ToVec2(vertex), m_params.m_depth), - glsl::vec2(0.0, 0.0), + return gpu::AreaVertex(glsl::vec3(glsl::ToVec2(vertex), m_params.m_depth), colorPoint); }); - dp::GLState state(gpu::TEXTURING_PROGRAM, dp::GLState::GeometryLayer); + dp::GLState state(gpu::AREA_PROGRAM, dp::GLState::GeometryLayer); state.SetColorTexture(region.GetTexture()); dp::AttributeProvider provider(1, m_vertexes.size()); - provider.InitStream(0, gpu::SolidTexturingVertex::GetBindingInfo(), make_ref(vertexes.data())); + provider.InitStream(0, gpu::AreaVertex::GetBindingInfo(), make_ref(vertexes.data())); batcher->InsertTriangleList(state, make_ref(&provider)); } diff --git a/iphone/Maps/Platform/opengl/iosOGLContext.h b/iphone/Maps/Platform/opengl/iosOGLContext.h index af7a43b6fa..24f905f551 100644 --- a/iphone/Maps/Platform/opengl/iosOGLContext.h +++ b/iphone/Maps/Platform/opengl/iosOGLContext.h @@ -1,6 +1,6 @@ #pragma once -#import "../../../../drape/oglcontext.hpp" +#import "drape/oglcontext.hpp" #import #import diff --git a/iphone/Maps/Platform/opengl/iosOGLContext.mm b/iphone/Maps/Platform/opengl/iosOGLContext.mm index bdbe7c7cdc..0ab44261a1 100644 --- a/iphone/Maps/Platform/opengl/iosOGLContext.mm +++ b/iphone/Maps/Platform/opengl/iosOGLContext.mm @@ -1,6 +1,8 @@ #import "iosOGLContext.h" -#import "../../../../base/assert.hpp" -#import "../../../../base/logging.cpp" +#import "base/assert.hpp" +#import "base/logging.cpp" + +#import "drape/glfunctions.hpp" iosOGLContext::iosOGLContext(CAEAGLLayer * layer, iosOGLContext * contextToShareWith, bool needBuffers) : m_layer(layer) @@ -39,8 +41,13 @@ void iosOGLContext::present() ASSERT(m_nativeContext != NULL, ()); ASSERT(m_renderBufferId, ()); + GLenum const discards[] = { GL_DEPTH_ATTACHMENT, GL_COLOR_ATTACHMENT0 }; + GLCHECK(glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, discards)); + glBindRenderbuffer(GL_RENDERBUFFER, m_renderBufferId); [m_nativeContext presentRenderbuffer: GL_RENDERBUFFER]; + + GLCHECK(glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, discards + 1)); } void iosOGLContext::setDefaultFramebuffer() diff --git a/map/framework.cpp b/map/framework.cpp index be9a374c9c..8beba62489 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -898,6 +898,7 @@ void Framework::MemoryWarning() { LOG(LINFO, ("MemoryWarning")); ClearAllCaches(); + SharedBufferManager::instance().clearReserved(); } void Framework::EnterBackground()