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

attribute_provider.hpp « drape - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05432e7484700db797618254821f60247187eb75 (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
#pragma once

#include "drape/pointers.hpp"
#include "drape/binding_info.hpp"

#include "std/vector.hpp"

namespace dp
{

class AttributeProvider
{
public:
  AttributeProvider(uint8_t streamCount, uint32_t vertexCount);

  /// interface for batcher
  bool IsDataExists() const;
  uint32_t GetVertexCount() const;

  uint8_t GetStreamCount() const;
  void const * GetRawPointer(uint8_t streamIndex);
  BindingInfo const & GetBindingInfo(uint8_t streamIndex) const;

  void Advance(uint32_t vertexCount);

  void InitStream(uint8_t streamIndex,
                  BindingInfo const & bindingInfo,
                  ref_ptr<void> data);

private:
  int32_t m_vertexCount;

  struct AttributeStream
  {
    BindingInfo m_binding;
    ref_ptr<void> m_data;
  };
  vector<AttributeStream> m_streams;
#ifdef DEBUG
  void CheckStreams() const;
  void InitCheckStream(uint8_t streamIndex);
  vector<bool> m_checkInfo;
#endif
};

} // namespace dp