Home | History | Annotate | Download | only in libGLES_CM

Lines Matching refs:texture

22 #include "Texture.h"
68 // Returns an unused texture name
90 void ResourceManager::deleteTexture(GLuint texture)
92 Texture *textureObject = mTextureNameSpace.remove(texture);
115 Texture *ResourceManager::getTexture(unsigned int handle)
136 void ResourceManager::checkTextureAllocation(GLuint texture, TextureType type)
138 if(!getTexture(texture) && texture != 0)
140 Texture *textureObject;
144 textureObject = new Texture2D(texture);
148 textureObject = new TextureExternal(texture);
158 mTextureNameSpace.insert(texture, textureObject);