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

data_buffer.hpp « drape - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f22c7a31c9a96789811cbd159512bad496642419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "drape/gpu_buffer.hpp"

namespace dp
{

class DataBuffer : public GPUBuffer
{
public:
  DataBuffer(uint8_t elementSize, uint16_t capacity);
};

} // namespace dp