Home
last modified time | relevance | path

Searched refs:GrImageContext (Results 1 – 25 of 31) sorted by relevance

12

/external/skia/src/gpu/
DGrImageContext.cpp19 GrImageContext::GrImageContext(sk_sp<GrContextThreadSafeProxy> proxy) in GrImageContext() function in GrImageContext
23 GrImageContext::~GrImageContext() {} in ~GrImageContext()
25 void GrImageContext::abandonContext() { in abandonContext()
29 bool GrImageContext::abandoned() { in abandoned()
33 sk_sp<GrImageContext> GrImageContext::MakeForPromiseImage(sk_sp<GrContextThreadSafeProxy> tsp) { in MakeForPromiseImage()
34 return sk_sp<GrImageContext>(new GrImageContext(std::move(tsp))); in MakeForPromiseImage()
DGrImageContextPriv.h30 GrImageContext* asImageContext() { return fContext->asImageContext(); } in asImageContext()
35 static sk_sp<GrImageContext> MakeForPromiseImage(sk_sp<GrContextThreadSafeProxy> tsp) { in MakeForPromiseImage()
36 return GrImageContext::MakeForPromiseImage(std::move(tsp)); in MakeForPromiseImage()
43 explicit GrImageContextPriv(GrImageContext* context) : fContext(context) {}
51 GrImageContext* fContext;
53 friend class GrImageContext; // to construct/copy this type. variable
56 inline GrImageContextPriv GrImageContext::priv() { return GrImageContextPriv(this); } in priv()
58 inline const GrImageContextPriv GrImageContext::priv () const { // NOLINT(readability-const-return… in priv()
59 return GrImageContextPriv(const_cast<GrImageContext*>(this)); in priv()
DGrProxyProvider.h16 class GrImageContext; variable
28 GrProxyProvider(GrImageContext*);
308 GrImageContext* fImageContext;
DGrBaseContextPriv.h28 GrImageContext* asImageContext() { return fContext->asImageContext(); } in asImageContext()
DGrSurfaceFillContext.h23 class GrImageContext; variable
39 static std::tuple<GrColorType, GrBackendFormat> GetFallbackColorTypeAndFormat(GrImageContext*,
DGrRecordingContextPriv.h32 GrImageContext* asImageContext() { return fContext->asImageContext(); } in asImageContext()
DGrDirectContextPriv.h43 GrImageContext* asImageContext() { return fContext->asImageContext(); } in asImageContext()
/external/skqp/src/gpu/
DGrImageContextPriv.h24 explicit GrImageContextPriv(GrImageContext* context) : fContext(context) {} in GrImageContextPriv()
32 GrImageContext* fContext;
34 friend class GrImageContext; // to construct/copy this type. variable
37 inline GrImageContextPriv GrImageContext::priv() { return GrImageContextPriv(this); } in priv()
39 inline const GrImageContextPriv GrImageContext::priv () const { in priv()
40 return GrImageContextPriv(const_cast<GrImageContext*>(this)); in priv()
DGrImageContext.cpp10 GrImageContext::GrImageContext(GrBackendApi backend, uint32_t uniqueID) in GrImageContext() function in GrImageContext
14 GrImageContext::~GrImageContext() {} in ~GrImageContext()
/external/skia/include/private/
DGrImageContext.h19 class GrImageContext : public GrContext_Base {
21 ~GrImageContext() override;
30 GrImageContext(sk_sp<GrContextThreadSafeProxy>);
38 GrImageContext* asImageContext() override { return this; } in asImageContext()
44 static sk_sp<GrImageContext> MakeForPromiseImage(sk_sp<GrContextThreadSafeProxy>);
DGrContext_Base.h20 class GrImageContext; variable
83 virtual GrImageContext* asImageContext() { return nullptr; } in asImageContext()
/external/skqp/include/private/
DGrImageContext.h15 class SK_API GrImageContext : public GrContext_Base {
17 ~GrImageContext() override;
26 GrImageContext(GrBackendApi backend, uint32_t uniqueID);
28 GrImageContext* asImageContext() override { return this; } in asImageContext()
DGrRecordingContext.h15 class SK_API GrRecordingContext : public GrImageContext {
31 typedef GrImageContext INHERITED;
DGrContext_Base.h16 class GrImageContext; variable
47 virtual GrImageContext* asImageContext() { return nullptr; } in asImageContext()
/external/skia/src/image/
DSkImage_GpuBase.h19 class GrImageContext; variable
25 GrImageContext* context() const final { return fContext.get(); } in context()
56 SkImage_GpuBase(sk_sp<GrImageContext>, SkImageInfo, uint32_t uniqueID);
58 sk_sp<GrImageContext> fContext;
DSkImage_GpuYUVA.h26 SkImage_GpuYUVA(sk_sp<GrImageContext>,
50 SkImage_GpuYUVA(sk_sp<GrImageContext>, const SkImage_GpuYUVA* image, sk_sp<SkColorSpace>);
DSkImage_Base.h28 class GrImageContext; variable
81 virtual GrImageContext* context() const { return nullptr; } in context()
DSkImage_GpuYUVA.cpp34 SkImage_GpuYUVA::SkImage_GpuYUVA(sk_sp<GrImageContext> context, in SkImage_GpuYUVA()
55 SkImage_GpuYUVA::SkImage_GpuYUVA(sk_sp<GrImageContext> context, in SkImage_GpuYUVA()
381 sk_sp<GrImageContext> ctx(GrImageContextPriv::MakeForPromiseImage(std::move(threadSafeProxy))); in MakePromiseYUVATexture()
DSkImage_Gpu.h26 SkImage_Gpu(sk_sp<GrImageContext> context,
DSkImage_GpuBase.cpp30 SkImage_GpuBase::SkImage_GpuBase(sk_sp<GrImageContext> context, SkImageInfo info, uint32_t uniqueID) in SkImage_GpuBase()
DSkImage_Gpu.cpp143 SkImage_Gpu::SkImage_Gpu(sk_sp<GrImageContext> context, in SkImage_Gpu()
626 sk_sp<GrImageContext> ctx(GrImageContextPriv::MakeForPromiseImage(std::move(threadSafeProxy))); in MakePromiseTexture()
/external/skia/include/gpu/
DGrRecordingContext.h41 class GrRecordingContext : public GrImageContext {
267 using INHERITED = GrImageContext;
/external/skia/include/core/
DSkYUVAPixmaps.h20 class GrImageContext; variable
53 SupportedDataTypes(const GrImageContext&);
/external/skia/tools/gpu/
DProxyUtils.cpp34 GrImageContext* iContext = as_IB(image)->context(); in GetTextureImageProxy()
/external/skia/src/core/
DSkYUVAPixmaps.cpp19 SkYUVAPixmapInfo::SupportedDataTypes::SupportedDataTypes(const GrImageContext& context) { in SupportedDataTypes()

12