diff --git a/drape/drape_common.pri b/drape/drape_common.pri index f172f59282..e8f70f005d 100644 --- a/drape/drape_common.pri +++ b/drape/drape_common.pri @@ -41,6 +41,7 @@ SOURCES += \ $$DRAPE_DIR/texture_of_colors.cpp \ $$DRAPE_DIR/glyph_manager.cpp \ $$DRAPE_DIR/sdf_image.cpp \ + $$DRAPE_DIR/utils/vertex_decl.cpp HEADERS += \ $$DRAPE_DIR/data_buffer.hpp \ @@ -87,3 +88,4 @@ HEADERS += \ $$DRAPE_DIR/glsl_func.hpp \ $$DRAPE_DIR/glyph_manager.hpp \ $$DRAPE_DIR/sdf_image.h \ + $$DRAPE_DIR/utils/vertex_decl.hpp diff --git a/drape/utils/vertex_decl.cpp b/drape/utils/vertex_decl.cpp new file mode 100644 index 0000000000..42276acb9d --- /dev/null +++ b/drape/utils/vertex_decl.cpp @@ -0,0 +1,122 @@ +#include "vertex_decl.hpp" + +namespace gpu +{ + +SolidTexturingVertex::SolidTexturingVertex() + : m_position(0.0, 0.0, 0.0) + , m_normal(0.0, 0.0) + , m_colorTexCoord(0.0, 0.0) +{ +} + +SolidTexturingVertex::SolidTexturingVertex(glm::vec3 const & position, glm::vec2 const & normal, glm::vec2 const & colorTexCoord) + : m_position(position) + , m_normal(normal) + , m_colorTexCoord(colorTexCoord) +{ +} + +dp::BindingInfo const & SolidTexturingVertex::GetBindingInfo() +{ + STATIC_ASSERT(sizeof(SolidTexturingVertex) == (sizeof(glsl::vec3) + 2 * sizeof(glsl::vec2))); + + static dp::BindingInfo s_info(3); + static bool s_inited = false; + + if (!s_inited) + { + s_inited = true; + dp::BindingDecl & posDecl = s_info.GetBindingDecl(0); + posDecl.m_attributeName = "a_position"; + posDecl.m_componentCount = 3; + posDecl.m_componentType = gl_const::GLFloatType; + posDecl.m_offset = 0; + posDecl.m_stride = sizeof(SolidTexturingVertex); + + dp::BindingDecl & normalDecl = s_info.GetBindingDecl(1); + normalDecl.m_attributeName = "a_normal"; + normalDecl.m_componentCount = 2; + normalDecl.m_componentType = gl_const::GLFloatType; + normalDecl.m_offset = sizeof(glsl::vec3); + normalDecl.m_stride = posDecl.m_stride; + + dp::BindingDecl & colorTexCoordDecl = s_info.GetBindingDecl(2); + colorTexCoordDecl.m_attributeName = "a_colorTexCoords"; + colorTexCoordDecl.m_componentCount = 2; + colorTexCoordDecl.m_componentType = gl_const::GLFloatType; + colorTexCoordDecl.m_offset = sizeof(glsl::vec3) + sizeof(glsl::vec2); + colorTexCoordDecl.m_stride = posDecl.m_stride; + } + + return s_info; +} + +dp::BindingInfo const & TextStaticVertex::GetBindingInfo() +{ + STATIC_ASSERT(sizeof(TextStaticVertex) == (sizeof(glsl::vec3) + 3 * sizeof(glsl::vec2))); + static dp::BindingInfo s_info(4); + static bool s_inited = false; + + if (!s_inited) + { + s_inited = true; + + dp::BindingDecl & posDecl = s_info.GetBindingDecl(0); + posDecl.m_attributeName = "a_position"; + posDecl.m_componentCount = 3; + posDecl.m_componentType = gl_const::GLFloatType; + posDecl.m_offset = 0; + posDecl.m_stride = sizeof(TextStaticVertex); + + dp::BindingDecl & colorDecl = s_info.GetBindingDecl(1); + colorDecl.m_attributeName = "a_colorTexCoord"; + colorDecl.m_componentCount = 2; + colorDecl.m_componentType = gl_const::GLFloatType; + colorDecl.m_offset = sizeof(glsl::vec3); + colorDecl.m_stride = posDecl.m_stride; + + dp::BindingDecl & outlineDecl = s_info.GetBindingDecl(2); + outlineDecl.m_attributeName = "a_outlineColorTexCoord"; + outlineDecl.m_componentCount = 2; + outlineDecl.m_componentType = gl_const::GLFloatType; + outlineDecl.m_offset = colorDecl.m_offset + sizeof(glsl::vec2); + outlineDecl.m_stride = posDecl.m_stride; + + dp::BindingDecl & maskDecl = s_info.GetBindingDecl(3); + maskDecl.m_attributeName = "a_maskTexCoord"; + maskDecl.m_componentCount = 2; + maskDecl.m_componentType = gl_const::GLFloatType; + maskDecl.m_offset = outlineDecl.m_offset + sizeof(glsl::vec2); + maskDecl.m_stride = posDecl.m_stride; + } + + return s_info; +} + +dp::BindingInfo const & TextDynamicVertex::GetBindingInfo() +{ + STATIC_ASSERT(sizeof(TextDynamicVertex) == sizeof(glsl::vec2)); + static dp::BindingInfo s_info(1, GetDynamicStreamID()); + static bool s_inited = false; + + if (!s_inited) + { + dp::BindingDecl & decl = s_info.GetBindingDecl(0); + decl.m_attributeName = "a_normal"; + decl.m_componentCount = 2; + decl.m_componentType = gl_const::GLFloatType; + decl.m_offset = 0; + decl.m_stride = sizeof(TextDynamicVertex); + } + + return s_info; +} + +uint32_t TextDynamicVertex::GetDynamicStreamID() +{ + return 0x7F; +} + +} //namespace gpu + diff --git a/drape/utils/vertex_decl.hpp b/drape/utils/vertex_decl.hpp new file mode 100644 index 0000000000..f4e9a86542 --- /dev/null +++ b/drape/utils/vertex_decl.hpp @@ -0,0 +1,60 @@ +#pragma once + +#include "../glsl_types.hpp" +#include "../binding_info.hpp" + +#include "../../base/buffer_vector.hpp" + +namespace gpu +{ + +struct SolidTexturingVertex +{ + SolidTexturingVertex(); + SolidTexturingVertex(glsl::vec3 const & position, glsl::vec2 const & normal, glsl::vec2 const & colorTexCoord); + + glsl::vec3 m_position; + glsl::vec2 m_normal; + glsl::vec2 m_colorTexCoord; + + static dp::BindingInfo const & GetBindingInfo(); +}; + +typedef buffer_vector TSolidTexVertexBuffer; + +struct TextStaticVertex +{ +public: + TextStaticVertex() = default; + TextStaticVertex(glsl::vec3 position, glsl::vec2 colorTexCoord, glsl::vec2 outlineTexCoord, glsl::vec2 maskTexCoord) + : m_position(position) + , m_colorTexCoord(colorTexCoord) + , m_outlineTexCoord(outlineTexCoord) + , m_maskTexCoord(maskTexCoord) + { + } + + glsl::vec3 m_position; + glsl::vec2 m_colorTexCoord; + glsl::vec2 m_outlineTexCoord; + glsl::vec2 m_maskTexCoord; + + static dp::BindingInfo const & GetBindingInfo(); +}; + +typedef buffer_vector TTextStaticVertexBuffer; + +struct TextDynamicVertex +{ + TextDynamicVertex() = default; + TextDynamicVertex(glsl::vec2 normal) : m_normal(normal) {} + + glsl::vec2 m_normal; + + static dp::BindingInfo const & GetBindingInfo(); + static uint32_t GetDynamicStreamID(); +}; + +typedef buffer_vector TTextDynamicVertexBuffer; + +} // namespace gpu