Home
last modified time | relevance | path

Searched refs:isFullyLazy (Results 1 – 13 of 13) sorted by relevance

/external/skia/tests/graphite/
DTextureProxyTest.cpp73 REPORTER_ASSERT(reporter, !textureProxy->isFullyLazy()); in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
92 REPORTER_ASSERT(reporter, !textureProxy->isFullyLazy()); in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
111 REPORTER_ASSERT(reporter, !textureProxy->isFullyLazy()); in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
133 REPORTER_ASSERT(reporter, textureProxy->isFullyLazy()); in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
140 REPORTER_ASSERT(reporter, textureProxy->isFullyLazy()); in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
145 REPORTER_ASSERT(reporter, textureProxy->isFullyLazy()); in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
/external/skia/src/gpu/ganesh/
DGrSurfaceProxy.cpp232 SkASSERT(!this->isFullyLazy()); in computeScratchKey()
251 SkASSERT(!this->isFullyLazy()); in backingStoreDimensions()
263 SkASSERT(!this->isFullyLazy()); in isFunctionallyExact()
290 SkASSERT(!src->isFullyLazy()); in Copy()
365 SkASSERT(!src->isFullyLazy()); in Copy()
405 SkASSERT(!fProxy->isFullyLazy()); in exactify()
464 if (fProxy->isFullyLazy()) { in doLazyInstantiation()
DGrSurfaceProxy.h137 bool isFullyLazy() const { in isFullyLazy() function
145 SkASSERT(!this->isFullyLazy()); in dimensions()
313 SkASSERT(!this->isFullyLazy()); in gpuMemorySize()
430 SkASSERT(this->isFullyLazy()); in setLazyDimensions()
DGrRenderTargetProxy.cpp169 SkASSERT(!this->isFullyLazy()); in callbackDesc()
DGrTextureRenderTargetProxy.cpp199 if (this->isFullyLazy()) { in callbackDesc()
DGrTextureProxy.cpp212 if (this->isFullyLazy()) { in callbackDesc()
DGrDynamicAtlas.cpp201 if (fTextureProxy->isFullyLazy()) { in instantiate()
DGrResourceAllocator.cpp345 if (cur->proxy()->isFullyLazy()) { in planAssignment()
/external/skia/src/gpu/graphite/
DTextureProxy.cpp48 SkASSERT(!this->isFullyLazy() || this->isInstantiated()); in dimensions()
56 bool TextureProxy::isFullyLazy() const { in isFullyLazy() function in skgpu::graphite::TextureProxy
165 SkASSERT(this->isFullyLazy() || fDimensions == texture->dimensions()); in validateTexture()
DTextureProxy.h43 bool isFullyLazy() const;
DDrawContext.cpp118 SkASSERT(targetProxy->isFullyLazy() || in recordUpload()
DDevice.cpp463 if (!target->isFullyLazy() && !dstRect.intersect(SkIRect::MakeSize(target->dimensions()))) { in onWritePixels()
597 if (this->clipIsWideOpen() && !fDC->target()->isFullyLazy()) { in drawPaint()
/external/skia/src/gpu/ganesh/effects/
DGrTextureEffect.cpp90 SkISize dim = proxy.isFullyLazy() ? SkISize{-1, -1} : proxy.backingStoreDimensions(); in Sampling()