/external/skqp/src/gpu/ccpr/ |
D | GrCCClipPath.cpp | 30 GrTextureProxy* textureProxy = fAtlas ? fAtlas->textureProxy() : nullptr; in init() local 31 if (!textureProxy || !textureProxy->instantiate(resourceProvider)) { in init() 37 SkASSERT(kTopLeft_GrSurfaceOrigin == textureProxy->origin()); in init() 39 fAtlasScale = {1.f / textureProxy->width(), 1.f / textureProxy->height()}; in init() 44 return sk_ref_sp(textureProxy->peekTexture()); in init()
|
D | GrCCAtlas.h | 57 GrTextureProxy* textureProxy() const { return fTextureProxy.get(); } in textureProxy() function
|
/external/skia/src/gpu/ccpr/ |
D | GrCCClipPath.cpp | 30 GrTextureProxy* textureProxy = fAtlas ? fAtlas->textureProxy() : nullptr; in init() local 31 if (!textureProxy || !textureProxy->instantiate(resourceProvider)) { in init() 37 SkASSERT(kTopLeft_GrSurfaceOrigin == textureProxy->origin()); in init() 39 fAtlasScale = {1.f / textureProxy->width(), 1.f / textureProxy->height()}; in init() 44 return sk_ref_sp(textureProxy->peekTexture()); in init()
|
D | GrCCAtlas.h | 57 GrTextureProxy* textureProxy() const { return fTextureProxy.get(); } in textureProxy() function
|
/external/skia/src/gpu/ |
D | GrTextureContext.cpp | 21 sk_sp<GrTextureProxy> textureProxy, in GrTextureContext() argument 23 : GrSurfaceContext(context, textureProxy->config(), std::move(colorSpace)) in GrTextureContext() 24 , fTextureProxy(std::move(textureProxy)) in GrTextureContext()
|
D | GrTextureProxyPriv.h | 32 explicit GrTextureProxyPriv(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in GrTextureProxyPriv() argument
|
D | GrTextureProxyCacheAccess.h | 26 explicit CacheAccess(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in CacheAccess() argument
|
D | GrOpList.cpp | 122 if (GrTextureProxy* textureProxy = dependedOn->asTextureProxy()) { in addDependency() local 123 if (textureProxy->texPriv().isDeferred()) { in addDependency() 124 fDeferredProxies.push_back(textureProxy); in addDependency()
|
D | GrDrawingManager.cpp | 659 sk_sp<GrTextureOpList> GrDrawingManager::newTextureOpList(GrTextureProxy* textureProxy) { in newTextureOpList() argument 669 if (GrOpList* lastOpList = textureProxy->getLastOpList()) { in newTextureOpList() 691 textureProxy, in newTextureOpList() 694 SkASSERT(textureProxy->getLastOpList() == opList.get()); in newTextureOpList() 810 sk_sp<GrTextureProxy> textureProxy(sk_ref_sp(sProxy->asTextureProxy())); in makeTextureContext() local 813 std::move(textureProxy), in makeTextureContext()
|
/external/skqp/src/gpu/ |
D | GrTextureContext.cpp | 22 sk_sp<GrTextureProxy> textureProxy, in GrTextureContext() argument 26 : GrSurfaceContext(context, drawingMgr, textureProxy->config(), std::move(colorSpace), in GrTextureContext() 28 , fTextureProxy(std::move(textureProxy)) in GrTextureContext()
|
D | GrTextureProxyPriv.h | 32 explicit GrTextureProxyPriv(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in GrTextureProxyPriv() argument
|
D | GrTextureProxyCacheAccess.h | 26 explicit CacheAccess(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in CacheAccess() argument
|
D | GrOpList.cpp | 122 if (GrTextureProxy* textureProxy = dependedOn->asTextureProxy()) { in addDependency() local 123 if (textureProxy->texPriv().isDeferred()) { in addDependency() 124 fDeferredProxies.push_back(textureProxy); in addDependency()
|
D | GrDrawingManager.cpp | 605 sk_sp<GrTextureOpList> GrDrawingManager::newTextureOpList(GrTextureProxy* textureProxy) { in newTextureOpList() argument 615 if (GrOpList* lastOpList = textureProxy->getLastOpList()) { in newTextureOpList() 629 textureProxy, in newTextureOpList() 632 SkASSERT(textureProxy->getLastOpList() == opList.get()); in newTextureOpList() 743 sk_sp<GrTextureProxy> textureProxy(sk_ref_sp(sProxy->asTextureProxy())); in makeTextureContext() local 745 return sk_sp<GrTextureContext>(new GrTextureContext(fContext, this, std::move(textureProxy), in makeTextureContext()
|
/external/skia/tools/gpu/ |
D | GrTest.cpp | 138 const GrTextureProxy* proxy = fCopyAtlasStack.front().textureProxy(); in testingOnly_frontCopyAtlasTexture() 146 const GrTextureProxy* proxy = fRenderedAtlasStack.front().textureProxy(); in testingOnly_frontRenderedAtlasTexture()
|
/external/skqp/src/effects/imagefilters/ |
D | SkMorphologyImageFilter.cpp | 371 sk_sp<GrTextureProxy> proxy = d->textureProxy(texIdx); in TestCreate() 419 sk_sp<GrTextureProxy> textureProxy, in apply_morphology_pass() argument 450 apply_morphology_rect(renderTargetContext, clip, std::move(textureProxy), in apply_morphology_pass() 454 apply_morphology_rect(renderTargetContext, clip, textureProxy, in apply_morphology_pass() 456 apply_morphology_rect(renderTargetContext, clip, textureProxy, in apply_morphology_pass() 458 apply_morphology_rect_no_bounds(renderTargetContext, clip, std::move(textureProxy), in apply_morphology_pass()
|
/external/skia/src/effects/imagefilters/ |
D | SkMorphologyImageFilter.cpp | 374 sk_sp<GrTextureProxy> proxy = d->textureProxy(texIdx); in TestCreate() 422 sk_sp<GrTextureProxy> textureProxy, in apply_morphology_pass() argument 453 apply_morphology_rect(renderTargetContext, clip, std::move(textureProxy), in apply_morphology_pass() 457 apply_morphology_rect(renderTargetContext, clip, textureProxy, in apply_morphology_pass() 459 apply_morphology_rect(renderTargetContext, clip, textureProxy, in apply_morphology_pass() 461 apply_morphology_rect_no_bounds(renderTargetContext, clip, std::move(textureProxy), in apply_morphology_pass()
|
/external/skia/src/gpu/effects/ |
D | GrGaussianConvolutionFragmentProcessor.cpp | 279 sk_sp<GrTextureProxy> proxy = d->textureProxy(texIdx); in TestCreate() 299 d->textureProxy(texIdx), in TestCreate()
|
D | GrSimpleTextureEffect.cpp | 86 return GrSimpleTextureEffect::Make(testData->textureProxy(texIdx), matrix, params); in TestCreate()
|
D | GrAlphaThresholdFragmentProcessor.fp | 64 sk_sp<GrTextureProxy> maskProxy = testData->textureProxy(GrProcessorUnitTest::kAlphaTextureIdx);
|
D | GrSimpleTextureEffect.fp | 75 return GrSimpleTextureEffect::Make(testData->textureProxy(texIdx), matrix, params);
|
/external/skqp/src/gpu/effects/ |
D | GrGaussianConvolutionFragmentProcessor.cpp | 279 sk_sp<GrTextureProxy> proxy = d->textureProxy(texIdx); in TestCreate() 299 d->textureProxy(texIdx), in TestCreate()
|
D | GrSimpleTextureEffect.cpp | 86 return GrSimpleTextureEffect::Make(testData->textureProxy(texIdx), matrix, params); in TestCreate()
|
D | GrSimpleTextureEffect.fp | 75 return GrSimpleTextureEffect::Make(testData->textureProxy(texIdx), matrix, params);
|
/external/skqp/tools/gpu/ |
D | GrTest.cpp | 311 const GrTextureProxy* proxy = fCopyAtlasStack.front().textureProxy(); in testingOnly_frontCopyAtlasTexture() 319 const GrTextureProxy* proxy = fRenderedAtlasStack.front().textureProxy(); in testingOnly_frontRenderedAtlasTexture()
|