Home
last modified time | relevance | path

Searched refs:textureProxy (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/src/gpu/
DGrRenderTask.cpp81 GrTextureProxy* textureProxy = this->target(0)->asTextureProxy(); in makeClosed() local
82 if (textureProxy && GrMipmapped::kYes == textureProxy->mipmapped()) { in makeClosed()
83 textureProxy->markMipmapsDirty(); in makeClosed()
170 GrTextureProxy* textureProxy = dependedOn->asTextureProxy(); in addDependency() local
172 SkASSERT(textureProxy); in addDependency()
173 if (GrMipmapped::kYes != textureProxy->mipmapped()) { in addDependency()
177 } else if (textureProxy->mipmapsAreDirty()) { in addDependency()
199 if (textureProxy && textureProxy->texPriv().isDeferred()) { in addDependency()
200 SkASSERT(fTextureResolveTask->fDeferredProxies.back() == textureProxy); in addDependency()
208 if (textureProxy) { in addDependency()
[all …]
DGrTextureResolveRenderTask.cpp39 GrTextureProxy* textureProxy = proxy->asTextureProxy(); in addProxy() local
40 SkASSERT(GrMipmapped::kYes == textureProxy->mipmapped()); in addProxy()
41 SkASSERT(textureProxy->mipmapsAreDirty()); in addProxy()
42 textureProxy->markMipmapsClean(); in addProxy()
DGrTextureProxyPriv.h32 explicit GrTextureProxyPriv(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in GrTextureProxyPriv() argument
DGrTextureProxyCacheAccess.h26 explicit CacheAccess(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in CacheAccess() argument
DGrDrawingManager.cpp499 if (auto* textureProxy = proxy->asTextureProxy()) { in resolve_and_mipmap() local
500 if (textureProxy->mipmapsAreDirty()) { in resolve_and_mipmap()
501 SkASSERT(textureProxy->peekTexture()); in resolve_and_mipmap()
502 gpu->regenerateMipMapLevels(textureProxy->peekTexture()); in resolve_and_mipmap()
503 textureProxy->markMipmapsClean(); in resolve_and_mipmap()
DGrDynamicAtlas.h59 GrTextureProxy* textureProxy() const { return fTextureProxy.get(); } in textureProxy() function
/third_party/skia/src/gpu/ops/
DAtlasRenderTask.h33 const GrTextureProxy* atlasProxy() const { return fDynamicAtlas->textureProxy(); } in atlasProxy()