Home
last modified time | relevance | path

Searched refs:fTextureProxy (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/src/gpu/
DGrDynamicAtlas.cpp93 fTextureProxy = MakeLazyAtlasProxy( in reset()
97 fTextureProxy->backingStoreDimensions(), in reset()
122 return {fTextureProxy, kTextureOrigin, in readView()
123 caps.getReadSwizzle(fTextureProxy->backendFormat(), fColorType)}; in readView()
127 return {fTextureProxy, kTextureOrigin, in writeView()
128 caps.getWriteSwizzle(fTextureProxy->backendFormat(), fColorType)}; in writeView()
196 if (fTextureProxy->isFullyLazy()) { in instantiate()
199 fTextureProxy->priv().setLazyDimensions(fDrawBounds); in instantiate()
201 SkASSERT(fTextureProxy->dimensions() == fDrawBounds); in instantiate()
207 SkASSERT(backingRT->backendFormat() == fTextureProxy->backendFormat()); in instantiate()
[all …]
DGrTextureProxy.cpp153 SkASSERT(!fTextureProxy->fDeferredUploader); in setDeferredUploader()
154 fTextureProxy->fDeferredUploader = std::move(uploader); in setDeferredUploader()
159 if (fTextureProxy->fDeferredUploader && fTextureProxy->isInstantiated()) { in scheduleUpload()
160 fTextureProxy->fDeferredUploader->scheduleUpload(flushState, fTextureProxy); in scheduleUpload()
165 SkASSERT(fTextureProxy->fDeferredUploader); in resetDeferredUploader()
166 fTextureProxy->fDeferredUploader.reset(); in resetDeferredUploader()
DGrTextureProxyCacheAccess.h19 fTextureProxy->setUniqueKey(proxyProvider, key); in setUniqueKey()
23 fTextureProxy->clearUniqueKey(); in clearUniqueKey()
26 explicit CacheAccess(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in CacheAccess()
35 GrTextureProxy* fTextureProxy; variable
DGrTextureProxyPriv.h23 bool isDeferred() const { return SkToBool(fTextureProxy->fDeferredUploader.get()); } in isDeferred()
32 explicit GrTextureProxyPriv(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in GrTextureProxyPriv()
41 GrTextureProxy* fTextureProxy; variable
DGrDynamicAtlas.h59 GrTextureProxy* textureProxy() const { return fTextureProxy.get(); } in textureProxy()
62 bool isInstantiated() const { return fTextureProxy->isInstantiated(); } in isInstantiated()
94 sk_sp<GrTextureProxy> fTextureProxy; variable
/third_party/skia/experimental/graphite/src/
DRenderPassTask.cpp40 if (fRenderPassDesc.fColorAttachment.fTextureProxy) { in addCommands()
41 auto target = fRenderPassDesc.fColorAttachment.fTextureProxy; in addCommands()
DCommandBuffer.cpp31 if (colorInfo.fTextureProxy) { in beginRenderPass()
32 this->trackResource(colorInfo.fTextureProxy->refTexture()); in beginRenderPass()
DDrawContext.cpp117 desc.fColorAttachment.fTextureProxy = sk_ref_sp(fDrawPasses[0]->target()); in snapRenderPassTask()
DCommandBuffer.h27 sk_sp<TextureProxy> fTextureProxy; member
/third_party/skia/experimental/graphite/src/mtl/
DMtlCommandBuffer.mm92 if (colorInfo.fTextureProxy) {
94 const Texture* colorTexture = (const Texture*)colorInfo.fTextureProxy->texture();
/third_party/skia/tests/graphite/
DCommandBufferTest.cpp63 renderPassDesc.fColorAttachment.fTextureProxy = target; in DEF_GRAPHITE_TEST_FOR_CONTEXTS()