HomeSort by relevance Sort by last modified time
    Searched refs:TextureManager (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTexture.h 29 #include "TextureManager.h"
39 class TextureManager;
44 static PassOwnPtr<LayerTexture> create(GraphicsContext3D* context, TextureManager* manager)
62 LayerTexture(GraphicsContext3D*, TextureManager*);
65 TextureManager* m_textureManager;
TextureManager.h 40 class TextureManager {
41 WTF_MAKE_NONCOPYABLE(TextureManager);
43 static PassOwnPtr<TextureManager> create(GraphicsContext3D* context, size_t memoryLimitBytes, int maxTextureSize)
45 return adoptPtr(new TextureManager(context, memoryLimitBytes, maxTextureSize));
59 TextureManager(GraphicsContext3D*, size_t memoryLimitBytes, int maxTextureSize);
TextureManager.cpp 29 #include "TextureManager.h"
41 TextureManager::TextureManager(GraphicsContext3D* context, size_t memoryLimitBytes, int maxTextureSize)
50 TextureToken TextureManager::getToken()
55 void TextureManager::releaseToken(TextureToken token)
62 bool TextureManager::hasTexture(TextureToken token)
73 bool TextureManager::isProtected(TextureToken token)
78 void TextureManager::protectTexture(TextureToken token)
87 void TextureManager::unprotectAllTextures()
93 bool TextureManager::reduceMemoryToLimit(size_t limit
    [all...]
LayerTexture.cpp 32 #include "TextureManager.h"
36 LayerTexture::LayerTexture(GraphicsContext3D* context, TextureManager* manager)
LayerRendererChromium.h 126 TextureManager* textureManager() const { return m_textureManager.get(); }
218 OwnPtr<TextureManager> m_textureManager;
RenderSurfaceChromium.cpp 84 TextureManager* textureManager = layerRenderer()->textureManager();
87 m_contentsTexture = LayerTexture::create(layerRenderer()->context(), textureManager);
LayerTilerChromium.cpp 119 TextureManager* manager = layerRenderer()->textureManager();
LayerRendererChromium.cpp 46 #include "TextureManager.h"
132 m_headsUpDisplay.clear(); // Explicitly destroy the HUD before the TextureManager dies.
    [all...]

Completed in 95 milliseconds