Welcome to mirror list, hosted at ThFree Co, Russian Federation.

memory_comparer.hpp « drape_tests « drape - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb6a3fbdeb5c8eb96f54902b7b1c83e3b22d9923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#pragma once

#include "base/logging.hpp"
#include "drape/glconstants.hpp"
#include "testing/testing.hpp"

#include <cstring>

namespace dp
{
struct MemoryComparer
{
  void * m_mem;
  int m_size;

  MemoryComparer(void * memory, int size) : m_mem(memory), m_size(size) {}
  void cmpSubBuffer(glConst /*type*/, uint32_t size, void const * data, uint32_t /*offset*/) const
  {
    TEST_EQUAL(size, m_size, ());
    TEST_EQUAL(memcmp(m_mem, data, size), 0, ());
  }

  void cmpSubImage(uint32_t /*x*/, uint32_t /*y*/, uint32_t width, uint32_t height, glConst layout,
                   glConst pixelFormat, void const * data) const
  {
    uint32_t channelCount = 0;
    if (layout == gl_const::GLRGBA || layout == gl_const::GLRGBA8 || layout == gl_const::GLRGBA4)
      channelCount = 4;
    else if (layout == gl_const::GLRGB)
      channelCount = 3;
    else if (layout == gl_const::GLAlpha || layout == gl_const::GLAlpha8 ||
             layout == gl_const::GLLuminance || layout == gl_const::GLLuminance8 ||
             layout == gl_const::GLAlphaLuminance || layout == gl_const::GLRed)
    {
      channelCount = 1;
    }
    else
      ASSERT(false, ());

    ASSERT(gl_const::GL8BitOnChannel == pixelFormat, ());

    TEST_EQUAL(m_size, width * height * channelCount, ());
    uint8_t * member = (uint8_t *)m_mem;
    uint8_t * input = (uint8_t *)data;

    for (int i = 0; i < m_size; ++i)
      TEST_EQUAL(member[i], input[i], (i));
  }
};
}  // namespace dp