Loading of new texture in textureSet

This commit is contained in:
Roman Sorokin 2014-09-15 14:26:30 +03:00 committed by Alex Zolotarev
parent 4f70bae9b2
commit 5a58193334

View file

@ -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(), ());