forked from organicmaps/organicmaps
Loading of new texture in textureSet
This commit is contained in:
parent
4f70bae9b2
commit
5a58193334
1 changed files with 9 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
#include "font_texture.hpp"
|
||||
#include "dynamic_texture.hpp"
|
||||
#include "stipple_pen_resource.hpp"
|
||||
#include "texture_of_colors.hpp"
|
||||
|
||||
#include "glfunctions.hpp"
|
||||
|
||||
|
@ -131,7 +132,9 @@ void TextureManager::Init(string const & resourcePrefix)
|
|||
}
|
||||
|
||||
typedef DynamicTexture<StipplePenIndex, StipplePenKey, Texture::StipplePen> TStippleTexture;
|
||||
typedef DynamicTexture<ColorPalette, ColorKey, Texture::Color> TColorTexture;
|
||||
textureSet->AddTexture(MovePointer<Texture>(new TStippleTexture(m2::PointU(1024, 1024), dp::ALPHA)));
|
||||
textureSet->AddTexture(MovePointer<Texture>(new TColorTexture(m2::PointU(1024, 1024), dp::RGBA8)));
|
||||
}
|
||||
|
||||
void TextureManager::Release()
|
||||
|
@ -180,6 +183,12 @@ void TextureManager::GetStippleRegion(StipplePenKey const & pen, TextureSetHolde
|
|||
VERIFY(FindResource(pen, region), ());
|
||||
}
|
||||
|
||||
void TextureManager::GetColorRegion(ColorKey const & pen, TextureSetHolder::ColorRegion & region) const
|
||||
{
|
||||
VERIFY(FindResource(pen, region), ());
|
||||
}
|
||||
|
||||
|
||||
void TextureManager::BindTextureSet(uint32_t textureSet) const
|
||||
{
|
||||
ASSERT_LESS(textureSet, m_textures.size(), ());
|
||||
|
|
Loading…
Add table
Reference in a new issue