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 46 class SK_API GrContext : public SkRefCnt {
49 * Creates a GrContext for a backend context.
51 static GrContext* Create(GrBackend, GrBackendContext, const GrContextOptions& options);
52 static GrContext* Create(GrBackend, GrBackendContext);
56 * Makes a GrContext which uses Metal as the backend. The device parameter is an MTLDevice
59 * GrContext is destroyed.
61 static sk_sp<GrContext> MakeMetal(void* device, void* queue, const GrContextOptions& options);
64 virtual ~GrContext();
69 * The GrContext normally assumes that no outsider is setting state
79 * Callback function to allow classes to cleanup on GrContext destruction
    [all...]
  /external/skia/src/gpu/
GrContext.cpp 8 #include "GrContext.h"
54 GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext) {
59 GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext,
61 sk_sp<GrContext> context(new GrContext);
70 sk_sp<GrContext> GrContext::MakeMetal(void* device, void* queue, const GrContextOptions& options) {
71 sk_sp<GrContext> context(new GrContext)
    [all...]

Completed in 88 milliseconds