c1541ae25f
The main thrust of this CL is to bring the GrContextThreadSafeProxy into the fold. Change-Id: I8f457d5b75c69f89beac3a0035b1c05ba5d3b931 Reviewed-on: https://skia-review.googlesource.com/c/188622 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
66 lines
1.9 KiB
C++
66 lines
1.9 KiB
C++
/*
|
|
* Copyright 2019 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef GrContext_Base_DEFINED
|
|
#define GrContext_Base_DEFINED
|
|
|
|
#include "SkRefCnt.h"
|
|
#include "GrContextOptions.h"
|
|
#include "GrTypes.h"
|
|
|
|
class GrBaseContextPriv;
|
|
class GrContext;
|
|
class GrImageContext;
|
|
class GrRecordingContext;
|
|
|
|
class SK_API GrContext_Base : public SkRefCnt {
|
|
public:
|
|
virtual ~GrContext_Base();
|
|
|
|
/*
|
|
* The 3D API backing this context
|
|
*/
|
|
GrBackendApi backend() const { return fBackend; }
|
|
|
|
// Provides access to functions that aren't part of the public API.
|
|
GrBaseContextPriv priv();
|
|
const GrBaseContextPriv priv() const;
|
|
|
|
protected:
|
|
friend class GrBaseContextPriv; // for hidden functions
|
|
|
|
GrContext_Base(GrBackendApi backend, const GrContextOptions& options, uint32_t uniqueID);
|
|
|
|
/**
|
|
* An identifier for this context. The id is used by all compatible contexts. For example,
|
|
* if SkImages are created on one thread using an image creation context, then fed into a
|
|
* DDL Recorder on second thread (which has a recording context) and finally replayed on
|
|
* a third thread with a direct context, then all three contexts will report the same id.
|
|
* It is an error for an image to be used with contexts that report different ids.
|
|
*/
|
|
uint32_t contextID() const { return fContextID; }
|
|
|
|
/*
|
|
* The options in effect for this context
|
|
*/
|
|
const GrContextOptions& options() const { return fOptions; }
|
|
|
|
GrContext_Base* asBaseContext() { return this; }
|
|
virtual GrImageContext* asImageContext() { return nullptr; }
|
|
virtual GrRecordingContext* asRecordingContext() { return nullptr; }
|
|
virtual GrContext* asDirectContext() { return nullptr; }
|
|
|
|
private:
|
|
const GrBackendApi fBackend;
|
|
const GrContextOptions fOptions;
|
|
const uint32_t fContextID;
|
|
|
|
typedef SkRefCnt INHERITED;
|
|
};
|
|
|
|
#endif
|