Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)

To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
This commit is contained in:
Konstantin Pastbin
2025-04-13 16:37:30 +07:00
commit e3e4a1985a
12931 changed files with 13195100 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
#include "testing/testing.hpp"
#include "drape_frontend/frame_values.hpp"
#include "drape/glsl_types.hpp"
#include "shaders/program_params.hpp"
namespace
{
glsl::mat4 const kTestMatrix1 = glsl::mat4(1.0f, 2.0f, 3.0f, 4.0f,
1.0f, 2.0f, 3.0f, 4.0f,
1.0f, 2.0f, 3.0f, 4.0f,
1.0f, 2.0f, 3.0f, 4.0f);
glsl::mat4 const kTestMatrix2 = glsl::mat4(4.0f, 3.0f, 2.0f, 1.0f,
4.0f, 3.0f, 2.0f, 1.0f,
4.0f, 3.0f, 2.0f, 1.0f,
4.0f, 3.0f, 2.0f, 1.0f);
} // namespace
UNIT_TEST(FrameValues_SetTo)
{
df::FrameValues frameValues;
frameValues.m_pivotTransform = kTestMatrix1;
frameValues.m_projection = kTestMatrix2;
frameValues.m_zScale = 42.0f;
gpu::MapProgramParams params;
frameValues.SetTo(params);
TEST(params.m_pivotTransform == frameValues.m_pivotTransform, ());
TEST(params.m_projection == frameValues.m_projection, ());
TEST(params.m_zScale == frameValues.m_zScale, ());
}
UNIT_TEST(FrameValues_SetTo_Partial)
{
df::FrameValues frameValues;
frameValues.m_pivotTransform = kTestMatrix1;
frameValues.m_projection = kTestMatrix2;
gpu::RouteProgramParams params;
frameValues.SetTo(params);
TEST(params.m_pivotTransform == frameValues.m_pivotTransform, ());
TEST(params.m_projection == frameValues.m_projection, ());
}