2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2010 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GrContext_DEFINED
|
|
|
|
#define GrContext_DEFINED
|
|
|
|
|
2015-11-11 21:18:11 +00:00
|
|
|
#include "GrCaps.h"
|
2013-09-18 13:00:55 +00:00
|
|
|
#include "GrColor.h"
|
|
|
|
#include "SkMatrix.h"
|
2014-06-12 17:24:21 +00:00
|
|
|
#include "SkPathEffect.h"
|
2013-09-18 13:00:55 +00:00
|
|
|
#include "SkTypes.h"
|
2016-01-08 15:19:47 +00:00
|
|
|
#include "../private/GrAuditTrail.h"
|
2016-01-06 16:26:09 +00:00
|
|
|
#include "../private/GrSingleOwner.h"
|
2017-11-01 19:45:43 +00:00
|
|
|
#include "GrContextOptions.h"
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2016-12-16 19:24:34 +00:00
|
|
|
class GrAtlasGlyphCache;
|
Revert "Revert "Revert "Revert "Add support for semaphores to be inserted on GrContext flush""""
This reverts commit cc8eb60c486eaf397685c60b28998682025fee1a.
Reason for revert: Chrome change landed that should fix chrome roll
Original change's description:
> Revert "Revert "Revert "Add support for semaphores to be inserted on GrContext flush"""
>
> This reverts commit 876aed8758b7109574999ffac43b1ea47f359bd7.
>
> Reason for revert: the bots seem to be unhappily red with this CL
>
> Original change's description:
> > Revert "Revert "Add support for semaphores to be inserted on GrContext flush""
> >
> > This reverts commit 8724b4609996eb6369b454611e31b065f3d8d2cf.
> >
> > Reason for revert: Creating a test CL to see what happens on the bots
> >
> > Original change's description:
> > > Revert "Add support for semaphores to be inserted on GrContext flush"
> > >
> > > This reverts commit cd1416efbc7af6f115dbaa09dce48e075d1d96ca.
> > >
> > > Reason for revert: speculative, to try to fix roll see gpu_tests.pixel_integration_test.PixelIntegrationTest.Pixel_GpuRasterization_ConcavePaths
> > >
> > > Original change's description:
> > > > Add support for semaphores to be inserted on GrContext flush
> > > >
> > > > This also moves the logic of inserting semaphores down into GrDrawingManager
> > > > and finishFlush on GrGpu. With it being on finishFlush, there should be no
> > > > issues when the DrawingManager starts respecting the proxy passed in assuming
> > > > it always calls finishFlush at the end (which it should).
> > > >
> > > > Bug: skia:
> > > > Change-Id: I925c2a289dcbbb9159b9120878af1d34f21a2dc7
> > > > Reviewed-on: https://skia-review.googlesource.com/25641
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: I9c5b9cf8c060193e1861dbb8f0c10fb11dfb5249
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Bug: skia:
> > > Reviewed-on: https://skia-review.googlesource.com/25980
> > > Reviewed-by: Mike Reed <reed@google.com>
> > > Commit-Queue: Mike Reed <reed@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,reed@google.com
> >
> > # Not skipping CQ checks because original CL landed > 1 day ago.
> >
> > Bug: skia:
> > Change-Id: I5edbeaa0769670ee58f362f0ccaa78319410aa6c
> > Reviewed-on: https://skia-review.googlesource.com/26160
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,reed@google.com
>
> Change-Id: I22fd6febafe70489a5fdb695c6f4263368eb423d
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug: skia:
> Reviewed-on: https://skia-review.googlesource.com/29422
> Reviewed-by: Yuqian Li <liyuqian@google.com>
> Commit-Queue: Yuqian Li <liyuqian@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,liyuqian@google.com,reed@google.com
Change-Id: Ie3eae818b02599a70f714ef6b6635ce7d171bde6
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: skia:
Reviewed-on: https://skia-review.googlesource.com/30000
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2017-08-02 15:10:09 +00:00
|
|
|
class GrBackendSemaphore;
|
2016-08-03 21:26:53 +00:00
|
|
|
class GrContextPriv;
|
2016-03-11 14:46:33 +00:00
|
|
|
class GrContextThreadSafeProxy;
|
2015-10-17 14:43:27 +00:00
|
|
|
class GrDrawingManager;
|
2016-12-16 23:59:19 +00:00
|
|
|
struct GrDrawOpAtlasConfig;
|
2014-09-23 16:50:21 +00:00
|
|
|
class GrFragmentProcessor;
|
2017-07-25 14:05:01 +00:00
|
|
|
struct GrGLInterface;
|
2011-05-02 21:14:59 +00:00
|
|
|
class GrGpu;
|
2011-08-17 13:42:46 +00:00
|
|
|
class GrIndexBuffer;
|
2017-07-25 14:05:01 +00:00
|
|
|
struct GrMockOptions;
|
2013-03-22 18:34:09 +00:00
|
|
|
class GrOvalRenderer;
|
2013-11-01 15:23:44 +00:00
|
|
|
class GrPath;
|
2018-01-08 18:40:32 +00:00
|
|
|
class GrProxyProvider;
|
2017-07-25 14:05:01 +00:00
|
|
|
class GrRenderTargetContext;
|
2011-07-26 20:45:30 +00:00
|
|
|
class GrResourceEntry;
|
2015-02-11 18:49:59 +00:00
|
|
|
class GrResourceCache;
|
2015-04-30 21:18:54 +00:00
|
|
|
class GrResourceProvider;
|
2017-09-07 16:36:34 +00:00
|
|
|
class GrSamplerState;
|
2017-03-30 12:02:11 +00:00
|
|
|
class GrSurfaceProxy;
|
2015-04-08 16:08:31 +00:00
|
|
|
class GrTextBlobCache;
|
2014-06-24 07:12:27 +00:00
|
|
|
class GrTextContext;
|
2017-03-09 03:21:00 +00:00
|
|
|
class GrTextureProxy;
|
2011-08-17 13:42:46 +00:00
|
|
|
class GrVertexBuffer;
|
2017-07-25 14:05:01 +00:00
|
|
|
struct GrVkBackendContext;
|
2016-01-22 15:17:34 +00:00
|
|
|
class GrSwizzle;
|
2015-09-15 21:16:10 +00:00
|
|
|
class SkTraceMemoryDump;
|
2011-07-26 20:45:30 +00:00
|
|
|
|
2017-03-09 03:21:00 +00:00
|
|
|
class SkImage;
|
|
|
|
class SkSurfaceProps;
|
2017-08-23 14:12:00 +00:00
|
|
|
class SkTaskGroup;
|
2017-03-09 03:21:00 +00:00
|
|
|
|
2013-09-09 13:38:37 +00:00
|
|
|
class SK_API GrContext : public SkRefCnt {
|
2011-02-22 20:59:41 +00:00
|
|
|
public:
|
|
|
|
/**
|
2012-10-25 18:43:28 +00:00
|
|
|
* Creates a GrContext for a backend context.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2015-05-22 21:01:46 +00:00
|
|
|
static GrContext* Create(GrBackend, GrBackendContext, const GrContextOptions& options);
|
|
|
|
static GrContext* Create(GrBackend, GrBackendContext);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2017-12-07 17:33:05 +00:00
|
|
|
static sk_sp<GrContext> MakeGL(sk_sp<const GrGLInterface>, const GrContextOptions&);
|
|
|
|
static sk_sp<GrContext> MakeGL(sk_sp<const GrGLInterface>);
|
2017-12-07 21:23:39 +00:00
|
|
|
// Deprecated
|
|
|
|
static sk_sp<GrContext> MakeGL(const GrGLInterface*);
|
|
|
|
static sk_sp<GrContext> MakeGL(const GrGLInterface*, const GrContextOptions&);
|
2017-07-25 14:05:01 +00:00
|
|
|
|
|
|
|
#ifdef SK_VULKAN
|
2017-12-07 17:33:05 +00:00
|
|
|
static sk_sp<GrContext> MakeVulkan(sk_sp<const GrVkBackendContext>, const GrContextOptions&);
|
|
|
|
static sk_sp<GrContext> MakeVulkan(sk_sp<const GrVkBackendContext>);
|
2017-07-25 14:05:01 +00:00
|
|
|
#endif
|
|
|
|
|
2017-07-13 19:07:54 +00:00
|
|
|
#ifdef SK_METAL
|
|
|
|
/**
|
|
|
|
* Makes a GrContext which uses Metal as the backend. The device parameter is an MTLDevice
|
|
|
|
* and queue is an MTLCommandQueue which should be used by the backend. These objects must
|
|
|
|
* have a ref on them which can be transferred to Ganesh which will release the ref when the
|
|
|
|
* GrContext is destroyed.
|
|
|
|
*/
|
|
|
|
static sk_sp<GrContext> MakeMetal(void* device, void* queue, const GrContextOptions& options);
|
2017-07-25 14:05:01 +00:00
|
|
|
static sk_sp<GrContext> MakeMetal(void* device, void* queue);
|
2017-07-13 19:07:54 +00:00
|
|
|
#endif
|
|
|
|
|
2017-07-25 14:05:01 +00:00
|
|
|
static sk_sp<GrContext> MakeMock(const GrMockOptions*, const GrContextOptions&);
|
|
|
|
static sk_sp<GrContext> MakeMock(const GrMockOptions*);
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
virtual ~GrContext();
|
|
|
|
|
2016-10-27 16:30:08 +00:00
|
|
|
sk_sp<GrContextThreadSafeProxy> threadSafeProxy();
|
2016-03-11 14:46:33 +00:00
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
/**
|
|
|
|
* The GrContext normally assumes that no outsider is setting state
|
|
|
|
* within the underlying 3D API's context/device/whatever. This call informs
|
|
|
|
* the context that the state was modified and it should resend. Shouldn't
|
|
|
|
* be called frequently for good performance.
|
2013-06-28 18:57:35 +00:00
|
|
|
* The flag bits, state, is dpendent on which backend is used by the
|
|
|
|
* context, either GL or D3D (possible in future).
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2013-06-28 18:57:35 +00:00
|
|
|
void resetContext(uint32_t state = kAll_GrBackendState);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2012-09-24 19:33:59 +00:00
|
|
|
/**
|
|
|
|
* Callback function to allow classes to cleanup on GrContext destruction.
|
|
|
|
* The 'info' field is filled in with the 'info' passed to addCleanUp.
|
|
|
|
*/
|
|
|
|
typedef void (*PFCleanUpFunc)(const GrContext* context, void* info);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a function to be called from within GrContext's destructor.
|
|
|
|
* This gives classes a chance to free resources held on a per context basis.
|
|
|
|
* The 'info' parameter will be stored and passed to the callback function.
|
|
|
|
*/
|
|
|
|
void addCleanUp(PFCleanUpFunc cleanUp, void* info) {
|
|
|
|
CleanUpData* entry = fCleanUpData.push();
|
|
|
|
|
|
|
|
entry->fFunc = cleanUp;
|
|
|
|
entry->fInfo = info;
|
|
|
|
}
|
|
|
|
|
2011-03-30 21:26:44 +00:00
|
|
|
/**
|
2016-04-01 18:54:31 +00:00
|
|
|
* Abandons all GPU resources and assumes the underlying backend 3D API context is not longer
|
|
|
|
* usable. Call this if you have lost the associated GPU context, and thus internal texture,
|
|
|
|
* buffer, etc. references/IDs are now invalid. Calling this ensures that the destructors of the
|
|
|
|
* GrContext and any of its created resource objects will not make backend 3D API calls. Content
|
|
|
|
* rendered but not previously flushed may be lost. After this function is called all subsequent
|
|
|
|
* calls on the GrContext will fail or be no-ops.
|
|
|
|
*
|
|
|
|
* The typical use case for this function is that the underlying 3D context was lost and further
|
|
|
|
* API calls may crash.
|
2011-03-30 21:26:44 +00:00
|
|
|
*/
|
2014-07-28 20:48:36 +00:00
|
|
|
void abandonContext();
|
2011-06-08 22:55:10 +00:00
|
|
|
|
2016-04-01 18:54:31 +00:00
|
|
|
/**
|
|
|
|
* This is similar to abandonContext() however the underlying 3D context is not yet lost and
|
|
|
|
* the GrContext will cleanup all allocated resources before returning. After returning it will
|
|
|
|
* assume that the underlying context may no longer be valid.
|
|
|
|
*
|
|
|
|
* The typical use case for this function is that the client is going to destroy the 3D context
|
|
|
|
* but can't guarantee that GrContext will be destroyed first (perhaps because it may be ref'ed
|
|
|
|
* elsewhere by either the client or Skia objects).
|
|
|
|
*/
|
|
|
|
void releaseResourcesAndAbandonContext();
|
|
|
|
|
2014-05-09 14:29:32 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Resource Cache
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the current GPU resource cache limits.
|
|
|
|
*
|
|
|
|
* @param maxResources If non-null, returns maximum number of resources that
|
|
|
|
* can be held in the cache.
|
|
|
|
* @param maxResourceBytes If non-null, returns maximum number of bytes of
|
|
|
|
* video memory that can be held in the cache.
|
|
|
|
*/
|
|
|
|
void getResourceCacheLimits(int* maxResources, size_t* maxResourceBytes) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the current GPU resource cache usage.
|
|
|
|
*
|
|
|
|
* @param resourceCount If non-null, returns the number of resources that are held in the
|
|
|
|
* cache.
|
|
|
|
* @param maxResourceBytes If non-null, returns the total number of bytes of video memory held
|
|
|
|
* in the cache.
|
|
|
|
*/
|
|
|
|
void getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const;
|
|
|
|
|
2017-05-24 15:41:33 +00:00
|
|
|
/**
|
|
|
|
* Gets the number of bytes in the cache consumed by purgeable (e.g. unlocked) resources.
|
|
|
|
*/
|
|
|
|
size_t getResourceCachePurgeableBytes() const;
|
|
|
|
|
2014-05-09 14:29:32 +00:00
|
|
|
/**
|
|
|
|
* Specify the GPU resource cache limits. If the current cache exceeds either
|
|
|
|
* of these, it will be purged (LRU) to keep the cache within these limits.
|
|
|
|
*
|
|
|
|
* @param maxResources The maximum number of resources that can be held in
|
|
|
|
* the cache.
|
|
|
|
* @param maxResourceBytes The maximum number of bytes of video memory
|
|
|
|
* that can be held in the cache.
|
|
|
|
*/
|
|
|
|
void setResourceCacheLimits(int maxResources, size_t maxResourceBytes);
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
/**
|
2012-10-15 14:25:31 +00:00
|
|
|
* Frees GPU created by the context. Can be called to reduce GPU memory
|
2011-03-30 21:26:44 +00:00
|
|
|
* pressure.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2011-03-30 21:26:44 +00:00
|
|
|
void freeGpuResources();
|
|
|
|
|
2014-05-09 14:29:32 +00:00
|
|
|
/**
|
|
|
|
* Purge all the unlocked resources from the cache.
|
|
|
|
* This entry point is mainly meant for timing texture uploads
|
|
|
|
* and is not defined in normal builds of Skia.
|
|
|
|
*/
|
|
|
|
void purgeAllUnlockedResources();
|
|
|
|
|
2017-03-22 18:53:13 +00:00
|
|
|
/**
|
2017-12-13 14:26:37 +00:00
|
|
|
* Purge GPU resources that haven't been used in the past 'msNotUsed' milliseconds or are
|
|
|
|
* otherwise marked for deletion, regardless of whether the context is under budget.
|
2017-03-22 18:53:13 +00:00
|
|
|
*/
|
2017-12-13 14:26:37 +00:00
|
|
|
void performDeferredCleanup(std::chrono::milliseconds msNotUsed);
|
2017-03-22 18:53:13 +00:00
|
|
|
|
2017-12-14 12:46:55 +00:00
|
|
|
// Temporary compatibility API for Android.
|
|
|
|
void purgeResourcesNotUsedInMs(std::chrono::milliseconds msNotUsed) {
|
|
|
|
this->performDeferredCleanup(msNotUsed);
|
|
|
|
}
|
|
|
|
|
2017-05-25 20:43:59 +00:00
|
|
|
/**
|
|
|
|
* Purge unlocked resources from the cache until the the provided byte count has been reached
|
|
|
|
* or we have purged all unlocked resources. The default policy is to purge in LRU order, but
|
|
|
|
* can be overridden to prefer purging scratch resources (in LRU order) prior to purging other
|
|
|
|
* resource types.
|
|
|
|
*
|
|
|
|
* @param maxBytesToPurge the desired number of bytes to be purged.
|
|
|
|
* @param preferScratchResources If true scratch resources will be purged prior to other
|
|
|
|
* resource types.
|
|
|
|
*/
|
|
|
|
void purgeUnlockedResources(size_t bytesToPurge, bool preferScratchResources);
|
|
|
|
|
2015-05-29 15:02:10 +00:00
|
|
|
/** Access the context capabilities */
|
2017-12-08 18:11:11 +00:00
|
|
|
const GrCaps* caps() const { return fCaps.get(); }
|
2013-03-19 13:58:55 +00:00
|
|
|
|
2014-03-10 07:40:03 +00:00
|
|
|
/**
|
|
|
|
* Returns the recommended sample count for a render target when using this
|
|
|
|
* context.
|
|
|
|
*
|
|
|
|
* @param config the configuration of the render target.
|
|
|
|
* @param dpi the display density in dots per inch.
|
|
|
|
*
|
|
|
|
* @return sample count that should be perform well and have good enough
|
|
|
|
* rendering quality for the display. Alternatively returns 0 if
|
|
|
|
* MSAA is not supported or recommended to be used by default.
|
|
|
|
*/
|
|
|
|
int getRecommendedSampleCount(GrPixelConfig config, SkScalar dpi) const;
|
|
|
|
|
2017-04-24 14:57:28 +00:00
|
|
|
/*
|
|
|
|
* Create a new render target context backed by a deferred-style
|
|
|
|
* GrRenderTargetProxy. We guarantee that "asTextureProxy" will succeed for
|
|
|
|
* renderTargetContexts created via this entry point.
|
2016-04-28 16:55:15 +00:00
|
|
|
*/
|
2017-04-21 12:28:48 +00:00
|
|
|
sk_sp<GrRenderTargetContext> makeDeferredRenderTargetContext(
|
2017-04-24 14:57:28 +00:00
|
|
|
SkBackingFit fit,
|
2017-04-21 12:28:48 +00:00
|
|
|
int width, int height,
|
|
|
|
GrPixelConfig config,
|
|
|
|
sk_sp<SkColorSpace> colorSpace,
|
|
|
|
int sampleCnt = 0,
|
2017-10-30 17:41:26 +00:00
|
|
|
GrMipMapped = GrMipMapped::kNo,
|
2017-04-21 12:28:48 +00:00
|
|
|
GrSurfaceOrigin origin = kBottomLeft_GrSurfaceOrigin,
|
|
|
|
const SkSurfaceProps* surfaceProps = nullptr,
|
|
|
|
SkBudgeted = SkBudgeted::kYes);
|
2016-09-06 12:20:20 +00:00
|
|
|
/*
|
2016-10-27 18:47:55 +00:00
|
|
|
* This method will attempt to create a renderTargetContext that has, at least, the number of
|
2016-09-06 12:20:20 +00:00
|
|
|
* channels and precision per channel as requested in 'config' (e.g., A8 and 888 can be
|
|
|
|
* converted to 8888). It may also swizzle the channels (e.g., BGRA -> RGBA).
|
|
|
|
* SRGB-ness will be preserved.
|
|
|
|
*/
|
2016-11-21 19:05:03 +00:00
|
|
|
sk_sp<GrRenderTargetContext> makeDeferredRenderTargetContextWithFallback(
|
|
|
|
SkBackingFit fit,
|
|
|
|
int width, int height,
|
|
|
|
GrPixelConfig config,
|
|
|
|
sk_sp<SkColorSpace> colorSpace,
|
|
|
|
int sampleCnt = 0,
|
2017-10-30 17:41:26 +00:00
|
|
|
GrMipMapped = GrMipMapped::kNo,
|
2017-01-30 13:06:27 +00:00
|
|
|
GrSurfaceOrigin origin = kBottomLeft_GrSurfaceOrigin,
|
2016-09-06 12:20:20 +00:00
|
|
|
const SkSurfaceProps* surfaceProps = nullptr,
|
|
|
|
SkBudgeted budgeted = SkBudgeted::kYes);
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Misc.
|
|
|
|
|
|
|
|
/**
|
Revert "Revert "Revert "Revert "Add support for semaphores to be inserted on GrContext flush""""
This reverts commit cc8eb60c486eaf397685c60b28998682025fee1a.
Reason for revert: Chrome change landed that should fix chrome roll
Original change's description:
> Revert "Revert "Revert "Add support for semaphores to be inserted on GrContext flush"""
>
> This reverts commit 876aed8758b7109574999ffac43b1ea47f359bd7.
>
> Reason for revert: the bots seem to be unhappily red with this CL
>
> Original change's description:
> > Revert "Revert "Add support for semaphores to be inserted on GrContext flush""
> >
> > This reverts commit 8724b4609996eb6369b454611e31b065f3d8d2cf.
> >
> > Reason for revert: Creating a test CL to see what happens on the bots
> >
> > Original change's description:
> > > Revert "Add support for semaphores to be inserted on GrContext flush"
> > >
> > > This reverts commit cd1416efbc7af6f115dbaa09dce48e075d1d96ca.
> > >
> > > Reason for revert: speculative, to try to fix roll see gpu_tests.pixel_integration_test.PixelIntegrationTest.Pixel_GpuRasterization_ConcavePaths
> > >
> > > Original change's description:
> > > > Add support for semaphores to be inserted on GrContext flush
> > > >
> > > > This also moves the logic of inserting semaphores down into GrDrawingManager
> > > > and finishFlush on GrGpu. With it being on finishFlush, there should be no
> > > > issues when the DrawingManager starts respecting the proxy passed in assuming
> > > > it always calls finishFlush at the end (which it should).
> > > >
> > > > Bug: skia:
> > > > Change-Id: I925c2a289dcbbb9159b9120878af1d34f21a2dc7
> > > > Reviewed-on: https://skia-review.googlesource.com/25641
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: I9c5b9cf8c060193e1861dbb8f0c10fb11dfb5249
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Bug: skia:
> > > Reviewed-on: https://skia-review.googlesource.com/25980
> > > Reviewed-by: Mike Reed <reed@google.com>
> > > Commit-Queue: Mike Reed <reed@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,reed@google.com
> >
> > # Not skipping CQ checks because original CL landed > 1 day ago.
> >
> > Bug: skia:
> > Change-Id: I5edbeaa0769670ee58f362f0ccaa78319410aa6c
> > Reviewed-on: https://skia-review.googlesource.com/26160
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,reed@google.com
>
> Change-Id: I22fd6febafe70489a5fdb695c6f4263368eb423d
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug: skia:
> Reviewed-on: https://skia-review.googlesource.com/29422
> Reviewed-by: Yuqian Li <liyuqian@google.com>
> Commit-Queue: Yuqian Li <liyuqian@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,liyuqian@google.com,reed@google.com
Change-Id: Ie3eae818b02599a70f714ef6b6635ce7d171bde6
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: skia:
Reviewed-on: https://skia-review.googlesource.com/30000
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2017-08-02 15:10:09 +00:00
|
|
|
* Call to ensure all drawing to the context has been issued to the underlying 3D API.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2016-09-07 17:02:04 +00:00
|
|
|
void flush();
|
2015-05-26 18:38:03 +00:00
|
|
|
|
Revert "Revert "Revert "Revert "Add support for semaphores to be inserted on GrContext flush""""
This reverts commit cc8eb60c486eaf397685c60b28998682025fee1a.
Reason for revert: Chrome change landed that should fix chrome roll
Original change's description:
> Revert "Revert "Revert "Add support for semaphores to be inserted on GrContext flush"""
>
> This reverts commit 876aed8758b7109574999ffac43b1ea47f359bd7.
>
> Reason for revert: the bots seem to be unhappily red with this CL
>
> Original change's description:
> > Revert "Revert "Add support for semaphores to be inserted on GrContext flush""
> >
> > This reverts commit 8724b4609996eb6369b454611e31b065f3d8d2cf.
> >
> > Reason for revert: Creating a test CL to see what happens on the bots
> >
> > Original change's description:
> > > Revert "Add support for semaphores to be inserted on GrContext flush"
> > >
> > > This reverts commit cd1416efbc7af6f115dbaa09dce48e075d1d96ca.
> > >
> > > Reason for revert: speculative, to try to fix roll see gpu_tests.pixel_integration_test.PixelIntegrationTest.Pixel_GpuRasterization_ConcavePaths
> > >
> > > Original change's description:
> > > > Add support for semaphores to be inserted on GrContext flush
> > > >
> > > > This also moves the logic of inserting semaphores down into GrDrawingManager
> > > > and finishFlush on GrGpu. With it being on finishFlush, there should be no
> > > > issues when the DrawingManager starts respecting the proxy passed in assuming
> > > > it always calls finishFlush at the end (which it should).
> > > >
> > > > Bug: skia:
> > > > Change-Id: I925c2a289dcbbb9159b9120878af1d34f21a2dc7
> > > > Reviewed-on: https://skia-review.googlesource.com/25641
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: I9c5b9cf8c060193e1861dbb8f0c10fb11dfb5249
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Bug: skia:
> > > Reviewed-on: https://skia-review.googlesource.com/25980
> > > Reviewed-by: Mike Reed <reed@google.com>
> > > Commit-Queue: Mike Reed <reed@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,reed@google.com
> >
> > # Not skipping CQ checks because original CL landed > 1 day ago.
> >
> > Bug: skia:
> > Change-Id: I5edbeaa0769670ee58f362f0ccaa78319410aa6c
> > Reviewed-on: https://skia-review.googlesource.com/26160
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,reed@google.com
>
> Change-Id: I22fd6febafe70489a5fdb695c6f4263368eb423d
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug: skia:
> Reviewed-on: https://skia-review.googlesource.com/29422
> Reviewed-by: Yuqian Li <liyuqian@google.com>
> Commit-Queue: Yuqian Li <liyuqian@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,liyuqian@google.com,reed@google.com
Change-Id: Ie3eae818b02599a70f714ef6b6635ce7d171bde6
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: skia:
Reviewed-on: https://skia-review.googlesource.com/30000
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2017-08-02 15:10:09 +00:00
|
|
|
/**
|
|
|
|
* Call to ensure all drawing to the context has been issued to the underlying 3D API. After
|
|
|
|
* issuing all commands, numSemaphore semaphores will be signaled by the gpu. The client passes
|
|
|
|
* in an array of numSemaphores GrBackendSemaphores. In general these GrBackendSemaphore's can
|
|
|
|
* be either initialized or not. If they are initialized, the backend uses the passed in
|
|
|
|
* semaphore. If it is not initialized, a new semaphore is created and the GrBackendSemaphore
|
|
|
|
* object is initialized with that semaphore.
|
|
|
|
*
|
|
|
|
* The client will own and be responsible for deleting the underlying semaphores that are stored
|
|
|
|
* and returned in initialized GrBackendSemaphore objects. The GrBackendSemaphore objects
|
|
|
|
* themselves can be deleted as soon as this function returns.
|
|
|
|
*
|
|
|
|
* If the backend API is OpenGL only uninitialized GrBackendSemaphores are supported.
|
|
|
|
* If the backend API is Vulkan either initialized or unitialized semaphores are supported.
|
|
|
|
* If unitialized, the semaphores which are created will be valid for use only with the VkDevice
|
|
|
|
* with which they were created.
|
|
|
|
*
|
|
|
|
* If this call returns GrSemaphoresSubmited::kNo, the GPU backend will not have created or
|
|
|
|
* added any semaphores to signal on the GPU. Thus the client should not have the GPU wait on
|
|
|
|
* any of the semaphores. However, any pending commands to the context will still be flushed.
|
|
|
|
*/
|
|
|
|
GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores,
|
|
|
|
GrBackendSemaphore signalSemaphores[]);
|
|
|
|
|
2015-05-07 15:23:19 +00:00
|
|
|
/**
|
|
|
|
* An ID associated with this context, guaranteed to be unique.
|
|
|
|
*/
|
|
|
|
uint32_t uniqueID() { return fUniqueID; }
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Functions intended for internal use only.
|
2018-01-19 18:18:20 +00:00
|
|
|
GrGpu* getGpu() { return fGpu.get(); }
|
|
|
|
const GrGpu* getGpu() const { return fGpu.get(); }
|
|
|
|
GrAtlasGlyphCache* getAtlasGlyphCache() { return fAtlasGlyphCache; }
|
|
|
|
GrTextBlobCache* getTextBlobCache() { return fTextBlobCache.get(); }
|
2015-10-17 14:43:27 +00:00
|
|
|
bool abandoned() const;
|
2012-06-06 18:21:18 +00:00
|
|
|
|
2015-12-02 17:05:37 +00:00
|
|
|
/** Reset GPU stats */
|
|
|
|
void resetGpuStats() const ;
|
|
|
|
|
2015-02-03 02:26:03 +00:00
|
|
|
/** Prints cache stats to the string if GR_CACHE_STATS == 1. */
|
|
|
|
void dumpCacheStats(SkString*) const;
|
2015-12-02 22:08:25 +00:00
|
|
|
void dumpCacheStatsKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values) const;
|
2012-08-22 10:57:05 +00:00
|
|
|
void printCacheStats() const;
|
2014-09-18 20:52:08 +00:00
|
|
|
|
2015-02-03 02:26:03 +00:00
|
|
|
/** Prints GPU stats to the string if GR_GPU_STATS == 1. */
|
|
|
|
void dumpGpuStats(SkString*) const;
|
2015-12-02 22:08:25 +00:00
|
|
|
void dumpGpuStatsKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values) const;
|
2015-02-03 02:26:03 +00:00
|
|
|
void printGpuStats() const;
|
2014-09-18 20:52:08 +00:00
|
|
|
|
2017-08-10 14:23:25 +00:00
|
|
|
/** Returns a string with detailed information about the context & GPU, in JSON format. */
|
|
|
|
SkString dump() const;
|
|
|
|
|
2015-08-03 17:17:44 +00:00
|
|
|
/** Specify the TextBlob cache limit. If the current cache exceeds this limit it will purge.
|
|
|
|
this is for testing only */
|
|
|
|
void setTextBlobCacheLimit_ForTesting(size_t bytes);
|
|
|
|
|
2015-08-19 15:16:43 +00:00
|
|
|
/** Specify the sizes of the GrAtlasTextContext atlases. The configs pointer below should be
|
|
|
|
to an array of 3 entries */
|
2016-12-16 23:59:19 +00:00
|
|
|
void setTextContextAtlasSizes_ForTesting(const GrDrawOpAtlasConfig* configs);
|
2015-08-19 15:16:43 +00:00
|
|
|
|
2015-09-15 21:16:10 +00:00
|
|
|
/** Enumerates all cached GPU resources and dumps their memory to traceMemoryDump. */
|
|
|
|
void dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const;
|
|
|
|
|
2016-12-20 16:05:30 +00:00
|
|
|
/** Get pointer to atlas texture for given mask format. Note that this wraps an
|
|
|
|
actively mutating texture in an SkImage. This could yield unexpected results
|
|
|
|
if it gets cached or used more generally. */
|
2017-01-20 15:03:25 +00:00
|
|
|
sk_sp<SkImage> getFontAtlasImage_ForTesting(GrMaskFormat format);
|
2015-11-08 16:07:24 +00:00
|
|
|
|
2016-01-11 18:39:11 +00:00
|
|
|
GrAuditTrail* getAuditTrail() { return &fAuditTrail; }
|
2016-01-08 15:19:47 +00:00
|
|
|
|
2017-11-01 19:45:43 +00:00
|
|
|
GrContextOptions::PersistentCache* getPersistentCache() { return fPersistentCache; }
|
|
|
|
|
2016-01-11 21:29:31 +00:00
|
|
|
/** This is only useful for debug purposes */
|
|
|
|
SkDEBUGCODE(GrSingleOwner* debugSingleOwner() const { return &fSingleOwner; } )
|
|
|
|
|
2016-08-03 21:26:53 +00:00
|
|
|
// Provides access to functions that aren't part of the public API.
|
|
|
|
GrContextPriv contextPriv();
|
|
|
|
const GrContextPriv contextPriv() const;
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
private:
|
2017-12-07 17:33:05 +00:00
|
|
|
sk_sp<GrGpu> fGpu;
|
2017-12-08 18:11:11 +00:00
|
|
|
sk_sp<const GrCaps> fCaps;
|
2016-03-11 14:46:33 +00:00
|
|
|
GrResourceCache* fResourceCache;
|
2017-03-04 13:12:46 +00:00
|
|
|
GrResourceProvider* fResourceProvider;
|
2018-01-08 18:40:32 +00:00
|
|
|
GrProxyProvider* fProxyProvider;
|
2015-04-30 21:18:54 +00:00
|
|
|
|
2016-10-27 16:30:08 +00:00
|
|
|
sk_sp<GrContextThreadSafeProxy> fThreadSafeProxy;
|
2016-03-11 14:46:33 +00:00
|
|
|
|
2016-12-16 19:24:34 +00:00
|
|
|
GrAtlasGlyphCache* fAtlasGlyphCache;
|
2016-10-27 16:30:08 +00:00
|
|
|
std::unique_ptr<GrTextBlobCache> fTextBlobCache;
|
2011-03-25 12:31:16 +00:00
|
|
|
|
2017-02-14 19:15:48 +00:00
|
|
|
bool fDisableGpuYUVConversion;
|
2016-03-11 14:46:33 +00:00
|
|
|
bool fDidTestPMConversions;
|
2017-04-20 14:24:36 +00:00
|
|
|
// true if the PM/UPM conversion succeeded; false otherwise
|
|
|
|
bool fPMUPMConversionsRoundTrip;
|
2012-08-27 12:53:13 +00:00
|
|
|
|
2016-01-06 16:26:09 +00:00
|
|
|
// In debug builds we guard against improper thread handling
|
2016-01-08 18:09:13 +00:00
|
|
|
// This guard is passed to the GrDrawingManager and, from there to all the
|
2017-03-04 13:12:46 +00:00
|
|
|
// GrRenderTargetContexts. It is also passed to the GrResourceProvider and SkGpuDevice.
|
2016-03-11 14:46:33 +00:00
|
|
|
mutable GrSingleOwner fSingleOwner;
|
2016-01-06 16:26:09 +00:00
|
|
|
|
2017-08-23 14:12:00 +00:00
|
|
|
std::unique_ptr<SkTaskGroup> fTaskGroup;
|
|
|
|
|
2012-09-24 19:33:59 +00:00
|
|
|
struct CleanUpData {
|
|
|
|
PFCleanUpFunc fFunc;
|
|
|
|
void* fInfo;
|
|
|
|
};
|
|
|
|
|
2016-03-11 14:46:33 +00:00
|
|
|
SkTDArray<CleanUpData> fCleanUpData;
|
2013-07-25 15:32:06 +00:00
|
|
|
|
2016-03-11 14:46:33 +00:00
|
|
|
const uint32_t fUniqueID;
|
2014-08-12 14:26:25 +00:00
|
|
|
|
2016-10-27 16:30:08 +00:00
|
|
|
std::unique_ptr<GrDrawingManager> fDrawingManager;
|
2015-10-17 14:43:27 +00:00
|
|
|
|
2016-03-11 14:46:33 +00:00
|
|
|
GrAuditTrail fAuditTrail;
|
2016-01-08 15:19:47 +00:00
|
|
|
|
2017-12-13 16:50:22 +00:00
|
|
|
const GrBackend fBackend;
|
2017-04-13 13:54:12 +00:00
|
|
|
|
2017-11-01 19:45:43 +00:00
|
|
|
GrContextOptions::PersistentCache* fPersistentCache;
|
|
|
|
|
2016-10-27 18:47:55 +00:00
|
|
|
// TODO: have the GrClipStackClip use renderTargetContexts and rm this friending
|
2016-08-03 21:26:53 +00:00
|
|
|
friend class GrContextPriv;
|
2016-08-06 05:32:12 +00:00
|
|
|
|
2017-12-13 16:50:22 +00:00
|
|
|
GrContext(GrBackend); // init must be called after the constructor.
|
|
|
|
GrContext(GrContextThreadSafeProxy*);
|
|
|
|
bool init(const GrContextOptions&);
|
2015-05-26 18:38:03 +00:00
|
|
|
|
2013-01-29 07:05:52 +00:00
|
|
|
/**
|
2017-04-17 15:48:28 +00:00
|
|
|
* These functions create premul <-> unpremul effects. If the second argument is 'true', they
|
|
|
|
* use the specialized round-trip effects from GrConfigConversionEffect, otherwise they
|
|
|
|
* create effects that do naive multiply or divide.
|
2013-01-28 14:26:09 +00:00
|
|
|
*/
|
2017-08-11 13:40:37 +00:00
|
|
|
std::unique_ptr<GrFragmentProcessor> createPMToUPMEffect(std::unique_ptr<GrFragmentProcessor>,
|
|
|
|
bool useConfigConversionEffect);
|
|
|
|
std::unique_ptr<GrFragmentProcessor> createUPMToPMEffect(std::unique_ptr<GrFragmentProcessor>,
|
|
|
|
bool useConfigConversionEffect);
|
2017-04-17 15:48:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if createPMtoUPMEffect and createUPMToPMEffect will succeed for non-sRGB 8888
|
|
|
|
* configs. In other words, did we find a pair of round-trip preserving conversion effects?
|
|
|
|
*/
|
|
|
|
bool validPMUPMConversionExists();
|
2012-08-27 12:53:13 +00:00
|
|
|
|
2015-04-10 14:01:30 +00:00
|
|
|
/**
|
|
|
|
* A callback similar to the above for use by the TextBlobCache
|
|
|
|
* TODO move textblob draw calls below context so we can use the call above.
|
|
|
|
*/
|
|
|
|
static void TextBlobCacheOverBudgetCB(void* data);
|
|
|
|
|
2013-09-09 13:38:37 +00:00
|
|
|
typedef SkRefCnt INHERITED;
|
2011-02-22 20:59:41 +00:00
|
|
|
};
|
|
|
|
|
2016-03-11 14:46:33 +00:00
|
|
|
/**
|
|
|
|
* Can be used to perform actions related to the generating GrContext in a thread safe manner. The
|
|
|
|
* proxy does not access the 3D API (e.g. OpenGL) that backs the generating GrContext.
|
|
|
|
*/
|
|
|
|
class GrContextThreadSafeProxy : public SkRefCnt {
|
2017-11-30 13:46:03 +00:00
|
|
|
public:
|
|
|
|
bool matches(GrContext* context) const { return context->uniqueID() == fContextUniqueID; }
|
|
|
|
|
2016-03-11 14:46:33 +00:00
|
|
|
private:
|
2017-12-13 16:50:22 +00:00
|
|
|
// DDL TODO: need to add unit tests for backend & maybe options
|
|
|
|
GrContextThreadSafeProxy(sk_sp<const GrCaps> caps,
|
|
|
|
uint32_t uniqueID,
|
|
|
|
GrBackend backend,
|
|
|
|
const GrContextOptions& options)
|
2016-10-27 16:30:08 +00:00
|
|
|
: fCaps(std::move(caps))
|
2017-12-13 16:50:22 +00:00
|
|
|
, fContextUniqueID(uniqueID)
|
|
|
|
, fBackend(backend)
|
|
|
|
, fOptions(options) {
|
|
|
|
}
|
2016-03-11 14:46:33 +00:00
|
|
|
|
2017-12-13 16:50:22 +00:00
|
|
|
sk_sp<const GrCaps> fCaps;
|
|
|
|
const uint32_t fContextUniqueID;
|
|
|
|
const GrBackend fBackend;
|
|
|
|
const GrContextOptions fOptions;
|
2016-03-11 14:46:33 +00:00
|
|
|
|
|
|
|
friend class GrContext;
|
2017-12-13 16:50:22 +00:00
|
|
|
friend class GrContextPriv;
|
2016-03-11 14:46:33 +00:00
|
|
|
friend class SkImage;
|
|
|
|
|
|
|
|
typedef SkRefCnt INHERITED;
|
|
|
|
};
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
#endif
|