diff --git a/drape/shaders/arrow3d_shadow_vertex_shader.vsh b/drape/shaders/arrow3d_shadow_vertex_shader.vsh index 26656d8e46..a46afd5dc6 100644 --- a/drape/shaders/arrow3d_shadow_vertex_shader.vsh +++ b/drape/shaders/arrow3d_shadow_vertex_shader.vsh @@ -1,5 +1,4 @@ attribute vec4 a_pos; -attribute vec3 a_normal; uniform mat4 m_transform; diff --git a/drape_frontend/arrow3d.cpp b/drape_frontend/arrow3d.cpp index 19f7fe7ecd..a4a66e72ce 100644 --- a/drape_frontend/arrow3d.cpp +++ b/drape_frontend/arrow3d.cpp @@ -134,21 +134,21 @@ void Arrow3d::Render(ScreenBase const & screen, ref_ptr m if (screen.isPerspective()) { ref_ptr shadowProgram = mng->GetProgram(gpu::ARROW_3D_SHADOW_PROGRAM); - RenderArrow(screen, shadowProgram, dp::Color(60, 60, 60, 60), 0.05f); + RenderArrow(screen, shadowProgram, dp::Color(60, 60, 60, 60), 0.05f, false /* hasNormals */); } // Render arrow. ref_ptr arrowProgram = mng->GetProgram(gpu::ARROW_3D_PROGRAM); - RenderArrow(screen, arrowProgram, - df::GetColorConstant(GetStyleReader().GetCurrentStyle(), - m_obsoletePosition ? df::Arrow3DObsolete : df::Arrow3D), 0.0f); + dp::Color const color = df::GetColorConstant(GetStyleReader().GetCurrentStyle(), + m_obsoletePosition ? df::Arrow3DObsolete : df::Arrow3D); + RenderArrow(screen, arrowProgram, color, 0.0f, true /* hasNormals */); arrowProgram->Unbind(); GLFunctions::glBindBuffer(0, gl_const::GLArrayBuffer); } void Arrow3d::RenderArrow(ScreenBase const & screen, ref_ptr program, - dp::Color const & color, float dz) + dp::Color const & color, float dz, bool hasNormals) { program->Bind(); @@ -159,11 +159,14 @@ void Arrow3d::RenderArrow(ScreenBase const & screen, ref_ptr pro GLFunctions::glVertexAttributePointer(attributePosition, kComponentsInVertex, gl_const::GLFloatType, false, 0, 0); - GLFunctions::glBindBuffer(m_bufferNormalsId, gl_const::GLArrayBuffer); - uint32_t const attributeNormal = program->GetAttributeLocation("a_normal"); - ASSERT_NOT_EQUAL(attributeNormal, -1, ()); - GLFunctions::glEnableVertexAttribute(attributeNormal); - GLFunctions::glVertexAttributePointer(attributeNormal, 3, gl_const::GLFloatType, false, 0, 0); + if (hasNormals) + { + GLFunctions::glBindBuffer(m_bufferNormalsId, gl_const::GLArrayBuffer); + uint32_t const attributeNormal = program->GetAttributeLocation("a_normal"); + ASSERT_NOT_EQUAL(attributeNormal, -1, ()); + GLFunctions::glEnableVertexAttribute(attributeNormal); + GLFunctions::glVertexAttributePointer(attributeNormal, 3, gl_const::GLFloatType, false, 0, 0); + } dp::UniformValuesStorage uniforms; math::Matrix const modelTransform = CalculateTransform(screen, dz); diff --git a/drape_frontend/arrow3d.hpp b/drape_frontend/arrow3d.hpp index c6916e4197..56128c2b1d 100644 --- a/drape_frontend/arrow3d.hpp +++ b/drape_frontend/arrow3d.hpp @@ -36,7 +36,7 @@ private: void Build(); math::Matrix CalculateTransform(ScreenBase const & screen, float dz) const; void RenderArrow(ScreenBase const & screen, ref_ptr program, - dp::Color const & color, float dz); + dp::Color const & color, float dz, bool hasNormals); m2::PointD m_position; double m_azimuth = 0.0;