Home
last modified time | relevance | path

Searched refs:GrTextureProxy (Results 1 – 25 of 380) sorted by relevance

12345678910>>...16

/external/skia/src/gpu/
DGrProxyProvider.h37 bool assignUniqueKeyToProxy(const GrUniqueKey&, GrTextureProxy*);
43 void adoptUniqueKeyFromSurface(GrTextureProxy* proxy, const GrSurface*);
49 void removeUniqueKeyFromProxy(const GrUniqueKey&, GrTextureProxy*);
54 sk_sp<GrTextureProxy> findProxyByUniqueKey(const GrUniqueKey&, GrSurfaceOrigin);
60 sk_sp<GrTextureProxy> findOrCreateProxyByUniqueKey(const GrUniqueKey&, GrSurfaceOrigin);
68 sk_sp<GrTextureProxy> createInstantiatedProxy(const GrSurfaceDesc&, SkBackingFit, SkBudgeted,
76 sk_sp<GrTextureProxy> createTextureProxy(const GrSurfaceDesc&, SkBudgeted,
84 sk_sp<GrTextureProxy> createTextureProxy(sk_sp<SkImage> srcImage,
98 sk_sp<GrTextureProxy> createMipMapProxy(const GrSurfaceDesc&, SkBudgeted);
103 sk_sp<GrTextureProxy> createMipMapProxyFromBitmap(const SkBitmap& bitmap,
[all …]
DGrTextureProxy.cpp18 GrTextureProxy::GrTextureProxy(const GrSurfaceDesc& srcDesc, GrMipMapped mipMapped, in GrTextureProxy() function in GrTextureProxy
29 GrTextureProxy::GrTextureProxy(LazyInstantiateCallback&& callback, LazyInstantiationType lazyType, in GrTextureProxy() function in GrTextureProxy
39 GrTextureProxy::GrTextureProxy(sk_sp<GrSurface> surf, GrSurfaceOrigin origin) in GrTextureProxy() function in GrTextureProxy
50 GrTextureProxy::~GrTextureProxy() { in ~GrTextureProxy()
61 bool GrTextureProxy::instantiate(GrResourceProvider* resourceProvider) { in instantiate()
76 sk_sp<GrSurface> GrTextureProxy::createSurface(GrResourceProvider* resourceProvider) const { in createSurface()
108 GrSamplerState::Filter GrTextureProxy::highestFilterMode() const { in highestFilterMode()
119 GrMipMapped GrTextureProxy::mipMapped() const { in mipMapped()
126 size_t GrTextureProxy::onUninstantiatedGpuMemorySize() const { in onUninstantiatedGpuMemorySize()
131 void GrTextureProxy::setUniqueKey(GrProxyProvider* proxyProvider, const GrUniqueKey& key) { in setUniqueKey()
[all …]
DGrTextureProxyCacheAccess.h16 class GrTextureProxy::CacheAccess {
26 explicit CacheAccess(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in CacheAccess()
34 GrTextureProxy* fTextureProxy;
36 friend class GrTextureProxy; // to construct/copy this type. variable
40 inline GrTextureProxy::CacheAccess GrTextureProxy::cacheAccess() { return CacheAccess(this); } in cacheAccess()
42 inline const GrTextureProxy::CacheAccess GrTextureProxy::cacheAccess() const { in cacheAccess()
43 return CacheAccess(const_cast<GrTextureProxy*>(this)); in cacheAccess()
DGrProxyProvider.cpp51 bool GrProxyProvider::assignUniqueKeyToProxy(const GrUniqueKey& key, GrTextureProxy* proxy) { in assignUniqueKeyToProxy()
81 void GrProxyProvider::adoptUniqueKeyFromSurface(GrTextureProxy* proxy, const GrSurface* surf) { in adoptUniqueKeyFromSurface()
90 void GrProxyProvider::removeUniqueKeyFromProxy(const GrUniqueKey& key, GrTextureProxy* proxy) { in removeUniqueKeyFromProxy()
98 sk_sp<GrTextureProxy> GrProxyProvider::findProxyByUniqueKey(const GrUniqueKey& key, in findProxyByUniqueKey()
106 sk_sp<GrTextureProxy> result = sk_ref_sp(fUniquelyKeyedProxies.find(key)); in findProxyByUniqueKey()
113 sk_sp<GrTextureProxy> GrProxyProvider::createWrapped(sk_sp<GrTexture> tex, GrSurfaceOrigin origin) { in createWrapped()
121 return sk_sp<GrTextureProxy>(new GrTextureRenderTargetProxy(std::move(tex), origin)); in createWrapped()
123 return sk_sp<GrTextureProxy>(new GrTextureProxy(std::move(tex), origin)); in createWrapped()
127 sk_sp<GrTextureProxy> GrProxyProvider::findOrCreateProxyByUniqueKey(const GrUniqueKey& key, in findOrCreateProxyByUniqueKey()
135 sk_sp<GrTextureProxy> result = this->findProxyByUniqueKey(key, origin); in findOrCreateProxyByUniqueKey()
[all …]
DGrTextureProxyPriv.h35 explicit GrTextureProxyPriv(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in GrTextureProxyPriv()
43 GrTextureProxy* fTextureProxy;
45 friend class GrTextureProxy; // to construct/copy this type. variable
48 inline GrTextureProxyPriv GrTextureProxy::texPriv() { return GrTextureProxyPriv(this); } in texPriv()
50 inline const GrTextureProxyPriv GrTextureProxy::texPriv() const { in texPriv()
51 return GrTextureProxyPriv(const_cast<GrTextureProxy*>(this)); in texPriv()
DGrTextureProducer.h18 class GrTextureProxy; variable
87 sk_sp<GrTextureProxy> refTextureProxyForParams(const GrSamplerState&,
92 sk_sp<GrTextureProxy> refTextureProxyForParams(GrSamplerState::Filter filter, in refTextureProxyForParams()
155 static sk_sp<GrTextureProxy> CopyOnGpu(GrContext*, sk_sp<GrTextureProxy> inputProxy,
162 GrTextureProxy*,
167 sk_sp<GrTextureProxy> proxy,
174 virtual sk_sp<GrTextureProxy> onRefTextureProxyForParams(const GrSamplerState&,
DGrTextureContext.h18 class GrTextureProxy; variable
34 GrTextureProxy* asTextureProxy() override { return fTextureProxy.get(); } in asTextureProxy()
35 const GrTextureProxy* asTextureProxy() const override { return fTextureProxy.get(); } in asTextureProxy()
36 sk_sp<GrTextureProxy> asTextureProxyRef() override { return fTextureProxy; } in asTextureProxyRef()
42 GrTextureContext(GrContext*, GrDrawingManager*, sk_sp<GrTextureProxy>,
52 sk_sp<GrTextureProxy> fTextureProxy;
DGrTextureAdjuster.h33 GrTextureAdjuster(GrContext*, sk_sp<GrTextureProxy>, SkAlphaType, uint32_t uniqueID,
42 GrTextureProxy* originalProxy() const { return fOriginal.get(); } in originalProxy()
43 sk_sp<GrTextureProxy> originalProxyRef() const { return fOriginal; } in originalProxyRef()
46 sk_sp<GrTextureProxy> onRefTextureProxyForParams(const GrSamplerState&,
51 sk_sp<GrTextureProxy> refTextureProxyCopy(const CopyParams& copyParams, bool willBeMipped);
54 sk_sp<GrTextureProxy> fOriginal;
/external/skqp/src/gpu/
DGrProxyProvider.h36 bool assignUniqueKeyToProxy(const GrUniqueKey&, GrTextureProxy*);
42 void adoptUniqueKeyFromSurface(GrTextureProxy* proxy, const GrSurface*);
48 void removeUniqueKeyFromProxy(const GrUniqueKey&, GrTextureProxy*);
53 sk_sp<GrTextureProxy> findProxyByUniqueKey(const GrUniqueKey&, GrSurfaceOrigin);
59 sk_sp<GrTextureProxy> findOrCreateProxyByUniqueKey(const GrUniqueKey&, GrSurfaceOrigin);
67 sk_sp<GrTextureProxy> createInstantiatedProxy(const GrSurfaceDesc&, SkBackingFit, SkBudgeted,
75 sk_sp<GrTextureProxy> createTextureProxy(const GrSurfaceDesc&, SkBudgeted,
83 sk_sp<GrTextureProxy> createTextureProxy(sk_sp<SkImage> srcImage,
97 sk_sp<GrTextureProxy> createMipMapProxy(const GrSurfaceDesc&, SkBudgeted,
109 sk_sp<GrTextureProxy> createMipMapProxy(const GrSurfaceDesc&, SkBudgeted);
[all …]
DGrTextureProxy.cpp18 GrTextureProxy::GrTextureProxy(const GrSurfaceDesc& srcDesc, SkBackingFit fit, SkBudgeted budgeted, in GrTextureProxy() function in GrTextureProxy
29 GrTextureProxy::GrTextureProxy(LazyInstantiateCallback&& callback, const GrSurfaceDesc& desc, in GrTextureProxy() function in GrTextureProxy
40 GrTextureProxy::GrTextureProxy(sk_sp<GrSurface> surf, GrSurfaceOrigin origin) in GrTextureProxy() function in GrTextureProxy
52 GrTextureProxy::~GrTextureProxy() { in ~GrTextureProxy()
63 bool GrTextureProxy::instantiate(GrResourceProvider* resourceProvider) { in instantiate()
78 sk_sp<GrSurface> GrTextureProxy::createSurface(GrResourceProvider* resourceProvider) const { in createSurface()
112 GrSamplerState::Filter GrTextureProxy::highestFilterMode() const { in highestFilterMode()
128 size_t GrTextureProxy::onUninstantiatedGpuMemorySize() const { in onUninstantiatedGpuMemorySize()
133 void GrTextureProxy::setUniqueKey(GrProxyProvider* proxyProvider, const GrUniqueKey& key) { in setUniqueKey()
148 void GrTextureProxy::clearUniqueKey() { in clearUniqueKey()
[all …]
DGrProxyProvider.cpp47 bool GrProxyProvider::assignUniqueKeyToProxy(const GrUniqueKey& key, GrTextureProxy* proxy) { in assignUniqueKeyToProxy()
77 void GrProxyProvider::adoptUniqueKeyFromSurface(GrTextureProxy* proxy, const GrSurface* surf) { in adoptUniqueKeyFromSurface()
86 void GrProxyProvider::removeUniqueKeyFromProxy(const GrUniqueKey& key, GrTextureProxy* proxy) { in removeUniqueKeyFromProxy()
94 sk_sp<GrTextureProxy> GrProxyProvider::findProxyByUniqueKey(const GrUniqueKey& key, in findProxyByUniqueKey()
102 sk_sp<GrTextureProxy> result = sk_ref_sp(fUniquelyKeyedProxies.find(key)); in findProxyByUniqueKey()
109 sk_sp<GrTextureProxy> GrProxyProvider::createWrapped(sk_sp<GrTexture> tex, GrSurfaceOrigin origin) { in createWrapped()
117 return sk_sp<GrTextureProxy>(new GrTextureRenderTargetProxy(std::move(tex), origin)); in createWrapped()
119 return sk_sp<GrTextureProxy>(new GrTextureProxy(std::move(tex), origin)); in createWrapped()
123 sk_sp<GrTextureProxy> GrProxyProvider::findOrCreateProxyByUniqueKey(const GrUniqueKey& key, in findOrCreateProxyByUniqueKey()
131 sk_sp<GrTextureProxy> result = this->findProxyByUniqueKey(key, origin); in findOrCreateProxyByUniqueKey()
[all …]
DGrTextureProxyCacheAccess.h16 class GrTextureProxy::CacheAccess {
26 explicit CacheAccess(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in CacheAccess()
34 GrTextureProxy* fTextureProxy;
36 friend class GrTextureProxy; // to construct/copy this type. variable
40 inline GrTextureProxy::CacheAccess GrTextureProxy::cacheAccess() { return CacheAccess(this); } in cacheAccess()
42 inline const GrTextureProxy::CacheAccess GrTextureProxy::cacheAccess() const { in cacheAccess()
43 return CacheAccess(const_cast<GrTextureProxy*>(this)); in cacheAccess()
DGrTextureProxyPriv.h32 explicit GrTextureProxyPriv(GrTextureProxy* textureProxy) : fTextureProxy(textureProxy) {} in GrTextureProxyPriv()
40 GrTextureProxy* fTextureProxy;
42 friend class GrTextureProxy; // to construct/copy this type. variable
45 inline GrTextureProxyPriv GrTextureProxy::texPriv() { return GrTextureProxyPriv(this); } in texPriv()
47 inline const GrTextureProxyPriv GrTextureProxy::texPriv() const { in texPriv()
48 return GrTextureProxyPriv(const_cast<GrTextureProxy*>(this)); in texPriv()
DGrTextureAdjuster.h25 sk_sp<GrTextureProxy> refTextureProxySafeForParams(const GrSamplerState&,
38 GrTextureAdjuster(GrContext*, sk_sp<GrTextureProxy>, SkAlphaType, uint32_t uniqueID,
47 GrTextureProxy* originalProxy() const { return fOriginal.get(); } in originalProxy()
48 sk_sp<GrTextureProxy> originalProxyRef() const { return fOriginal; } in originalProxyRef()
52 sk_sp<GrTextureProxy> fOriginal;
57 sk_sp<GrTextureProxy> refTextureProxyCopy(const CopyParams &copyParams, bool willBeMipped);
DGrTextureContext.h18 class GrTextureProxy; variable
34 GrTextureProxy* asTextureProxy() override { return fTextureProxy.get(); } in asTextureProxy()
35 const GrTextureProxy* asTextureProxy() const override { return fTextureProxy.get(); } in asTextureProxy()
36 sk_sp<GrTextureProxy> asTextureProxyRef() override { return fTextureProxy; } in asTextureProxyRef()
42 GrTextureContext(GrContext*, GrDrawingManager*, sk_sp<GrTextureProxy>,
52 sk_sp<GrTextureProxy> fTextureProxy;
DGrTextureAdjuster.cpp17 GrTextureAdjuster::GrTextureAdjuster(GrContext* context, sk_sp<GrTextureProxy> original, in GrTextureAdjuster()
41 sk_sp<GrTextureProxy> GrTextureAdjuster::refTextureProxyCopy(const CopyParams& copyParams, in refTextureProxyCopy()
48 sk_sp<GrTextureProxy> cachedCopy = in refTextureProxyCopy()
55 sk_sp<GrTextureProxy> proxy = this->originalProxyRef(); in refTextureProxyCopy()
57 sk_sp<GrTextureProxy> copy = CopyOnGpu(fContext, std::move(proxy), copyParams, willBeMipped); in refTextureProxyCopy()
68 sk_sp<GrTextureProxy> GrTextureAdjuster::refTextureProxySafeForParams(const GrSamplerState& params, in refTextureProxySafeForParams()
70 sk_sp<GrTextureProxy> proxy = this->originalProxyRef(); in refTextureProxySafeForParams()
102 sk_sp<GrTextureProxy> proxy( in createFragmentProcessor()
/external/skia/src/gpu/effects/
DGrYUVtoRGBEffect.h19 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> yProxy,
20 sk_sp<GrTextureProxy> uProxy,
21 sk_sp<GrTextureProxy> vProxy,
30 sk_sp<GrTextureProxy> ySampler, SkMatrix44 ySamplerTransform, in Make()
31 sk_sp<GrTextureProxy> uSampler, SkMatrix44 uSamplerTransform, in Make()
32 sk_sp<GrTextureProxy> vSampler, SkMatrix44 vSamplerTransform, in Make()
43 GrYUVtoRGBEffect(sk_sp<GrTextureProxy> ySampler, SkMatrix44 ySamplerTransform, in GrYUVtoRGBEffect()
44 sk_sp<GrTextureProxy> uSampler, SkMatrix44 uSamplerTransform, in GrYUVtoRGBEffect()
45 sk_sp<GrTextureProxy> vSampler, SkMatrix44 vSamplerTransform, in GrYUVtoRGBEffect()
DGrDistanceFieldGeoProc.h58 static sk_sp<GrGeometryProcessor> Make(const sk_sp<GrTextureProxy>* proxies, in Make()
66 static sk_sp<GrGeometryProcessor> Make(const sk_sp<GrTextureProxy>* proxies,
88 void addNewProxies(const sk_sp<GrTextureProxy>* proxies, int numProxies, const GrSamplerState&);
95 GrDistanceFieldA8TextGeoProc(const sk_sp<GrTextureProxy>* proxies,
131 const sk_sp<GrTextureProxy>* proxies, in Make()
148 void addNewProxies(const sk_sp<GrTextureProxy>* proxies, int numProxies, const GrSamplerState&);
158 const sk_sp<GrTextureProxy>* proxies,
197 static sk_sp<GrGeometryProcessor> Make(const sk_sp<GrTextureProxy>* proxies, in Make()
218 void addNewProxies(const sk_sp<GrTextureProxy>* proxies, int numProxies, const GrSamplerState&);
225 GrDistanceFieldLCDTextGeoProc(const sk_sp<GrTextureProxy>* proxies, int numProxies,
/external/skqp/src/gpu/effects/
DGrYUVtoRGBEffect.h19 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> yProxy,
20 sk_sp<GrTextureProxy> uProxy,
21 sk_sp<GrTextureProxy> vProxy,
30 sk_sp<GrTextureProxy> ySampler, SkMatrix44 ySamplerTransform, in Make()
31 sk_sp<GrTextureProxy> uSampler, SkMatrix44 uSamplerTransform, in Make()
32 sk_sp<GrTextureProxy> vSampler, SkMatrix44 vSamplerTransform, in Make()
43 GrYUVtoRGBEffect(sk_sp<GrTextureProxy> ySampler, SkMatrix44 ySamplerTransform, in GrYUVtoRGBEffect()
44 sk_sp<GrTextureProxy> uSampler, SkMatrix44 uSamplerTransform, in GrYUVtoRGBEffect()
45 sk_sp<GrTextureProxy> vSampler, SkMatrix44 vSamplerTransform, in GrYUVtoRGBEffect()
DGrDistanceFieldGeoProc.h60 static sk_sp<GrGeometryProcessor> Make(const sk_sp<GrTextureProxy> proxies[kMaxTextures], in Make()
67 static sk_sp<GrGeometryProcessor> Make(const sk_sp<GrTextureProxy> proxies[kMaxTextures], in Make()
88 void addNewProxies(const sk_sp<GrTextureProxy> proxies[kMaxTextures], const GrSamplerState& p);
95 GrDistanceFieldA8TextGeoProc(const sk_sp<GrTextureProxy> proxies[kMaxTextures],
129 const sk_sp<GrTextureProxy> proxies[kMaxTextures], in Make()
145 void addNewProxies(const sk_sp<GrTextureProxy> proxies[kMaxTextures], const GrSamplerState& p);
153 const sk_sp<GrTextureProxy> proxies[kMaxTextures],
193 static sk_sp<GrGeometryProcessor> Make(const sk_sp<GrTextureProxy> proxies[kMaxTextures], in Make()
213 void addNewProxies(const sk_sp<GrTextureProxy> proxies[kMaxTextures], const GrSamplerState& p);
220 GrDistanceFieldLCDTextGeoProc(const sk_sp<GrTextureProxy> proxies[kMaxTextures],
/external/skia/include/private/
DGrTextureProxy.h22 class GrTextureProxy : virtual public GrSurfaceProxy {
24 GrTextureProxy* asTextureProxy() override { return this; } in asTextureProxy()
25 const GrTextureProxy* asTextureProxy() const override { return this; } in asTextureProxy()
75 GrTextureProxy(const GrSurfaceDesc& srcDesc, GrMipMapped, SkBackingFit, SkBudgeted,
88 GrTextureProxy(LazyInstantiateCallback&&, LazyInstantiationType, const GrSurfaceDesc& desc,
92 GrTextureProxy(sk_sp<GrSurface>, GrSurfaceOrigin);
94 ~GrTextureProxy() override;
/external/skqp/include/private/
DGrTextureProxy.h22 class GrTextureProxy : virtual public GrSurfaceProxy {
24 GrTextureProxy* asTextureProxy() override { return this; } in asTextureProxy()
25 const GrTextureProxy* asTextureProxy() const override { return this; } in asTextureProxy()
70 GrTextureProxy(const GrSurfaceDesc& srcDesc, SkBackingFit, SkBudgeted,
83 GrTextureProxy(LazyInstantiateCallback&&, const GrSurfaceDesc& desc, GrMipMapped,
87 GrTextureProxy(sk_sp<GrSurface>, GrSurfaceOrigin);
89 ~GrTextureProxy() override;
/external/skia/tests/
DProxyConversionTest.cpp76 GrTextureProxy* tProxy = rtProxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
88 GrTextureProxy* tProxy = sProxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
103 GrTextureProxy* tProxy = sProxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
124 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
130 GrTextureProxy* tProxy = rtProxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
137 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
141 GrTextureProxy* tProxy = proxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
153 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
156 GrTextureProxy* tProxy = proxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
DTextureProxyTest.cpp45 static sk_sp<GrTextureProxy> deferred_tex(skiatest::Reporter* reporter, in deferred_tex()
49 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, fit, SkBudgeted::kYes); in deferred_tex()
55 static sk_sp<GrTextureProxy> deferred_texRT(skiatest::Reporter* reporter, in deferred_texRT()
59 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, fit, SkBudgeted::kYes); in deferred_texRT()
65 static sk_sp<GrTextureProxy> wrapped(skiatest::Reporter* reporter, in wrapped()
69 sk_sp<GrTextureProxy> proxy = proxyProvider->createInstantiatedProxy(desc, fit, in wrapped()
76 static sk_sp<GrTextureProxy> wrapped_with_key(skiatest::Reporter* reporter, in wrapped_with_key()
90 sk_sp<GrTextureProxy> proxy = proxyProvider->createInstantiatedProxy(desc, fit, in wrapped_with_key()
97 static sk_sp<GrTextureProxy> create_wrapped_backend(GrContext* context, SkBackingFit fit, in create_wrapped_backend()
119 sk_sp<GrTextureProxy> proxy, bool proxyIsCached) { in basic_test()
[all …]
/external/skqp/tests/
DProxyConversionTest.cpp76 GrTextureProxy* tProxy = rtProxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
88 GrTextureProxy* tProxy = sProxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
103 GrTextureProxy* tProxy = sProxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
124 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
130 GrTextureProxy* tProxy = rtProxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
137 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
141 GrTextureProxy* tProxy = proxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
153 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
156 GrTextureProxy* tProxy = proxy->asTextureProxy(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()

12345678910>>...16