Searched defs:GrContext (Results 1 - 3 of 3) sorted by relevance

/external/skia/src/gpu/effects/
H A DGrTextureStripAtlas.cpp37 void GrTextureStripAtlas::CleanUp(const GrContext*, void* info) { argument
167 GrContext::kDontFlush_PixelOpsFlag);
/external/skia/include/gpu/
H A DGrContext.h45 class SK_API GrContext : public SkRefCnt { class in inherits:SkRefCnt
47 SK_DECLARE_INST_COUNT(GrContext)
60 * Creates a GrContext for a backend context.
62 static GrContext* Create(GrBackend, GrBackendContext, const Options* opts = NULL);
67 static GrContext* CreateMockContext();
69 virtual ~GrContext();
72 * The GrContext normally assumes that no outsider is setting state
82 * Callback function to allow classes to cleanup on GrContext destruction.
85 typedef void (*PFCleanUpFunc)(const GrContext* context, void* info);
88 * Add a function to be called from within GrContext'
[all...]
/external/skia/src/gpu/
H A DGrContext.cpp9 #include "GrContext.h"
58 class GrContext::AutoCheckFlush {
60 AutoCheckFlush(GrContext* context) : fContext(context) { SkASSERT(context); }
69 GrContext* fContext;
72 GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext,
74 GrContext* context;
76 context = SkNEW_ARGS(GrContext, (Options()));
78 context = SkNEW_ARGS(GrContext, (*opts));
98 GrContext function in class:GrContext
[all...]

Completed in 61 milliseconds