Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
25
libs/drape/attribute_buffer_mutator.cpp
Normal file
25
libs/drape/attribute_buffer_mutator.cpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#include "drape/attribute_buffer_mutator.hpp"
|
||||
|
||||
namespace dp
|
||||
{
|
||||
AttributeBufferMutator::~AttributeBufferMutator()
|
||||
{
|
||||
SharedBufferManager & mng = SharedBufferManager::instance();
|
||||
for (size_t i = 0; i < m_array.size(); ++i)
|
||||
{
|
||||
TBufferNode & node = m_array[i];
|
||||
mng.freeSharedBuffer(node.second, node.first);
|
||||
}
|
||||
}
|
||||
|
||||
void AttributeBufferMutator::AddMutation(BindingInfo const & info, MutateNode const & node)
|
||||
{
|
||||
m_data[info].push_back(node);
|
||||
}
|
||||
|
||||
void * AttributeBufferMutator::AllocateMutationBuffer(size_t byteCount)
|
||||
{
|
||||
m_array.push_back(make_pair(SharedBufferManager::instance().reserveSharedBuffer(byteCount), byteCount));
|
||||
return &((*m_array.back().first)[0]);
|
||||
}
|
||||
} // namespace dp
|
||||
Loading…
Add table
Add a link
Reference in a new issue