HomeSort by relevance Sort by last modified time
    Searched refs:GrContext_Base (Results 1 - 21 of 21) sorted by null

  /external/skqp/src/gpu/
GrBaseContextPriv.h 11 #include "GrContext_Base.h"
13 /** Class that exposes methods on GrContext_Base that are only intended for use internal to Skia.
14 This class is purely a privileged window into GrContext_Base. It should never have
18 // from GrContext_Base
22 explicit GrBaseContextPriv(GrContext_Base* context) : fContext(context) {}
30 GrContext_Base* fContext;
32 friend class GrContext_Base; // to construct/copy this type.
35 inline GrBaseContextPriv GrContext_Base::priv() { return GrBaseContextPriv(this); }
37 inline const GrBaseContextPriv GrContext_Base::priv () const {
38 return GrBaseContextPriv(const_cast<GrContext_Base*>(this))
    [all...]
GrContext_Base.cpp 8 #include "GrContext_Base.h"
19 GrContext_Base::GrContext_Base(GrBackendApi backend,
25 GrContext_Base::~GrContext_Base() {
GrContextThreadSafeProxy.cpp 30 bool GrContextThreadSafeProxy::matches(GrContext_Base* context) const {
  /external/skia/src/gpu/
GrBaseContextPriv.h 11 #include "GrContext_Base.h"
13 /** Class that exposes methods on GrContext_Base that are only intended for use internal to Skia.
14 This class is purely a privileged window into GrContext_Base. It should never have
18 // from GrContext_Base
21 bool matches(GrContext_Base* candidate) const { return fContext->matches(candidate); }
39 explicit GrBaseContextPriv(GrContext_Base* context) : fContext(context) {}
47 GrContext_Base* fContext;
49 friend class GrContext_Base; // to construct/copy this type.
52 inline GrBaseContextPriv GrContext_Base::priv() { return GrBaseContextPriv(this); }
54 inline const GrBaseContextPriv GrContext_Base::priv () const
    [all...]
GrContext_Base.cpp 8 #include "GrContext_Base.h"
29 GrContext_Base::GrContext_Base(GrBackendApi backend,
37 GrContext_Base::~GrContext_Base() { }
39 bool GrContext_Base::init(sk_sp<const GrCaps> caps, sk_sp<GrSkSLFPFactoryCache> FPFactoryCache) {
47 bool GrContext_Base::explicitlyAllocateGPUResources() const {
59 const GrCaps* GrContext_Base::caps() const { return fCaps.get(); }
60 sk_sp<const GrCaps> GrContext_Base::refCaps() const { return fCaps; }
62 sk_sp<GrSkSLFPFactoryCache> GrContext_Base::fpFactoryCache() { return fFPFactoryCache;
    [all...]
GrDrawOpTest.h 16 class GrContext_Base;
36 const GrUserStencilSettings* GrGetRandomStencil(SkRandom* random, GrContext_Base*);
GrContextThreadSafeProxyPriv.h 20 // from GrContext_Base
23 bool matches(GrContext_Base* candidate) const { return fProxy->matches(candidate); }
GrDrawOpTest.cpp 10 #include "GrContext_Base.h"
18 const GrUserStencilSettings* GrGetRandomStencil(SkRandom* random, GrContext_Base* context) {
GrImageContextPriv.h 18 // from GrContext_Base
21 bool matches(GrContext_Base* candidate) const { return fContext->matches(candidate); }
GrRecordingContextPriv.h 18 // from GrContext_Base
21 bool matches(GrContext_Base* candidate) const { return fContext->matches(candidate); }
GrContextPriv.h 34 // from GrContext_Base
37 bool matches(GrContext_Base* candidate) const { return fContext->matches(candidate); }
GrSurfaceProxy.cpp 323 void GrSurfaceProxy::validate(GrContext_Base* context) const {
  /external/skqp/include/private/
GrContext_Base.h 19 class SK_API GrContext_Base : public SkRefCnt {
21 virtual ~GrContext_Base();
35 GrContext_Base(GrBackendApi backend, uint32_t uniqueID);
46 GrContext_Base* asBaseContext() { return this; }
GrImageContext.h 11 #include "GrContext_Base.h"
15 class SK_API GrImageContext : public GrContext_Base {
31 typedef GrContext_Base INHERITED;
  /external/skia/include/private/
GrContext_Base.h 22 class SK_API GrContext_Base : public SkRefCnt {
24 virtual ~GrContext_Base();
38 GrContext_Base(GrBackendApi backend, const GrContextOptions& options, uint32_t contextID);
51 bool matches(GrContext_Base* candidate) const {
GrImageContext.h 11 #include "GrContext_Base.h"
17 class SK_API GrImageContext : public GrContext_Base {
50 typedef GrContext_Base INHERITED;
GrSurfaceProxy.h 19 class GrContext_Base;
415 SkDEBUGCODE(void validate(GrContext_Base*) const;)
  /external/skia/include/gpu/
GrContextThreadSafeProxy.h 11 #include "../private/GrContext_Base.h"
22 class SK_API GrContextThreadSafeProxy : public GrContext_Base {
86 typedef GrContext_Base INHERITED;
  /external/skqp/include/gpu/
GrContextThreadSafeProxy.h 17 class GrContext_Base;
31 bool matches(GrContext_Base* context) const;
  /external/skia/src/gpu/effects/
GrSkSLFP.h 27 class GrContext_Base;
71 GrContext_Base* context,
79 GrContext_Base* context,
GrSkSLFP.cpp 11 #include "GrContext_Base.h"
246 std::unique_ptr<GrSkSLFP> GrSkSLFP::Make(GrContext_Base* context, int index, const char* name,
255 std::unique_ptr<GrSkSLFP> GrSkSLFP::Make(GrContext_Base* context, int index, const char* name,

Completed in 1345 milliseconds