HomeSort by relevance Sort by last modified time
    Searched defs:GrContext (Results 1 - 3 of 3) sorted by null

  /external/pdfium/core/fxcodec/jbig2/
JBig2_SymbolDict.h 35 const std::vector<JBig2ArithCtx>& GrContext() const { return m_grContext; }
40 void SetGrContext(const std::vector<JBig2ArithCtx>& grContext) {
41 m_grContext = grContext;
  /external/skia/include/gpu/
GrContext.h 47 class SK_API GrContext : public SkRefCnt {
50 * Creates a GrContext for a backend context.
52 static GrContext* Create(GrBackend, GrBackendContext, const GrContextOptions& options);
53 static GrContext* Create(GrBackend, GrBackendContext);
58 static GrContext* CreateMockContext();
60 virtual ~GrContext();
65 * The GrContext normally assumes that no outsider is setting state
75 * Callback function to allow classes to cleanup on GrContext destruction.
78 typedef void (*PFCleanUpFunc)(const GrContext* context, void* info);
81 * Add a function to be called from within GrContext's destructor
    [all...]
  /external/skia/src/gpu/
GrContext.cpp 8 #include "GrContext.h"
40 GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext) {
45 GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext,
47 GrContext* context = new GrContext;
66 GrContext::GrContext() : fUniqueID(next_id()) {
74 bool GrContext::init(GrBackend backend, GrBackendContext backendContext
    [all...]

Completed in 89 milliseconds