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

data_buffer.cpp « drape - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5180739d7aa056e3112e2ed689f17564372c8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "drape/data_buffer.hpp"

namespace dp
{

DataBuffer::DataBuffer(uint8_t elementSize, uint16_t capacity)
  : GPUBuffer(GPUBuffer::ElementBuffer, elementSize, capacity)
{
}

}