2013-08-21 19:27:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "GrTest.h"
|
|
|
|
|
2015-02-13 22:20:05 +00:00
|
|
|
#include "GrGpuResourceCacheAccess.h"
|
2014-11-03 20:31:14 +00:00
|
|
|
#include "GrInOrderDrawBuffer.h"
|
2015-02-11 18:49:59 +00:00
|
|
|
#include "GrResourceCache.h"
|
2015-02-03 02:26:03 +00:00
|
|
|
#include "SkString.h"
|
2013-08-21 19:27:48 +00:00
|
|
|
|
|
|
|
void GrTestTarget::init(GrContext* ctx, GrDrawTarget* target) {
|
|
|
|
SkASSERT(!fContext);
|
|
|
|
|
|
|
|
fContext.reset(SkRef(ctx));
|
|
|
|
fDrawTarget.reset(SkRef(target));
|
|
|
|
}
|
|
|
|
|
|
|
|
void GrContext::getTestTarget(GrTestTarget* tar) {
|
|
|
|
this->flush();
|
|
|
|
// We could create a proxy GrDrawTarget that passes through to fGpu until ~GrTextTarget() and
|
|
|
|
// then disconnects. This would help prevent test writers from mixing using the returned
|
|
|
|
// GrDrawTarget and regular drawing. We could also assert or fail in GrContext drawing methods
|
|
|
|
// until ~GrTestTarget().
|
2014-11-03 20:31:14 +00:00
|
|
|
tar->init(this, fDrawBuffer);
|
2013-08-21 19:27:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void GrContext::setMaxTextureSizeOverride(int maxTextureSizeOverride) {
|
|
|
|
fMaxTextureSizeOverride = maxTextureSizeOverride;
|
|
|
|
}
|
2013-12-18 17:25:33 +00:00
|
|
|
|
|
|
|
void GrContext::purgeAllUnlockedResources() {
|
2015-02-11 18:49:59 +00:00
|
|
|
fResourceCache->purgeAllUnlocked();
|
2013-12-18 17:25:33 +00:00
|
|
|
}
|
2014-11-05 22:47:41 +00:00
|
|
|
|
2015-02-03 02:26:03 +00:00
|
|
|
void GrContext::dumpCacheStats(SkString* out) const {
|
|
|
|
#if GR_CACHE_STATS
|
2015-02-11 18:49:59 +00:00
|
|
|
fResourceCache->dumpStats(out);
|
2015-02-03 02:26:03 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void GrContext::printCacheStats() const {
|
|
|
|
SkString out;
|
|
|
|
this->dumpCacheStats(&out);
|
2015-02-19 14:32:12 +00:00
|
|
|
SkDebugf("%s", out.c_str());
|
2015-02-03 02:26:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GrContext::dumpGpuStats(SkString* out) const {
|
|
|
|
#if GR_GPU_STATS
|
|
|
|
return fGpu->stats()->dump(out);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void GrContext::printGpuStats() const {
|
|
|
|
SkString out;
|
|
|
|
this->dumpGpuStats(&out);
|
2015-02-19 14:32:12 +00:00
|
|
|
SkDebugf("%s", out.c_str());
|
2015-02-03 02:26:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if GR_GPU_STATS
|
|
|
|
void GrGpu::Stats::dump(SkString* out) {
|
|
|
|
out->appendf("Render Target Binds: %d\n", fRenderTargetBinds);
|
|
|
|
out->appendf("Shader Compilations: %d\n", fShaderCompilations);
|
2015-02-03 05:19:50 +00:00
|
|
|
out->appendf("Textures Created: %d\n", fTextureCreates);
|
|
|
|
out->appendf("Texture Uploads: %d\n", fTextureUploads);
|
2015-04-16 18:22:42 +00:00
|
|
|
out->appendf("Stencil Buffer Creates: %d\n", fStencilAttachmentCreates);
|
2015-02-03 02:26:03 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if GR_CACHE_STATS
|
2015-02-11 18:49:59 +00:00
|
|
|
void GrResourceCache::dumpStats(SkString* out) const {
|
2015-02-03 02:26:03 +00:00
|
|
|
this->validate();
|
|
|
|
|
2015-02-17 23:09:34 +00:00
|
|
|
int locked = fNonpurgeableResources.count();
|
|
|
|
|
|
|
|
struct Stats {
|
|
|
|
int fScratch;
|
|
|
|
int fWrapped;
|
|
|
|
size_t fUnbudgetedSize;
|
|
|
|
|
|
|
|
Stats() : fScratch(0), fWrapped(0), fUnbudgetedSize(0) {}
|
|
|
|
|
|
|
|
void update(GrGpuResource* resource) {
|
|
|
|
if (resource->cacheAccess().isScratch()) {
|
|
|
|
++fScratch;
|
|
|
|
}
|
|
|
|
if (resource->cacheAccess().isWrapped()) {
|
|
|
|
++fWrapped;
|
|
|
|
}
|
|
|
|
if (!resource->resourcePriv().isBudgeted()) {
|
|
|
|
fUnbudgetedSize += resource->gpuMemorySize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2015-02-03 02:26:03 +00:00
|
|
|
|
2015-02-17 23:09:34 +00:00
|
|
|
Stats stats;
|
2015-02-03 02:26:03 +00:00
|
|
|
|
2015-02-17 23:09:34 +00:00
|
|
|
for (int i = 0; i < fNonpurgeableResources.count(); ++i) {
|
|
|
|
stats.update(fNonpurgeableResources[i]);
|
|
|
|
}
|
|
|
|
for (int i = 0; i < fPurgeableQueue.count(); ++i) {
|
|
|
|
stats.update(fPurgeableQueue.at(i));
|
2015-02-03 02:26:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float countUtilization = (100.f * fBudgetedCount) / fMaxCount;
|
|
|
|
float byteUtilization = (100.f * fBudgetedBytes) / fMaxBytes;
|
|
|
|
|
|
|
|
out->appendf("Budget: %d items %d bytes\n", fMaxCount, (int)fMaxBytes);
|
|
|
|
out->appendf("\t\tEntry Count: current %d"
|
|
|
|
" (%d budgeted, %d wrapped, %d locked, %d scratch %.2g%% full), high %d\n",
|
2015-02-23 20:12:59 +00:00
|
|
|
this->getResourceCount(), fBudgetedCount, stats.fWrapped, locked, stats.fScratch,
|
|
|
|
countUtilization, fHighWaterCount);
|
2015-02-03 02:26:03 +00:00
|
|
|
out->appendf("\t\tEntry Bytes: current %d (budgeted %d, %.2g%% full, %d unbudgeted) high %d\n",
|
2015-02-17 23:09:34 +00:00
|
|
|
SkToInt(fBytes), SkToInt(fBudgetedBytes), byteUtilization,
|
|
|
|
SkToInt(stats.fUnbudgetedSize), SkToInt(fHighWaterBytes));
|
2015-02-03 02:26:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-02-19 19:38:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void GrResourceCache::changeTimestamp(uint32_t newTimestamp) { fTimestamp = newTimestamp; }
|
2015-02-03 02:26:03 +00:00
|
|
|
|
2014-11-05 22:47:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Code for the mock context. It's built on a mock GrGpu class that does nothing.
|
|
|
|
////
|
|
|
|
|
|
|
|
#include "GrInOrderDrawBuffer.h"
|
|
|
|
#include "GrGpu.h"
|
|
|
|
|
2015-01-22 18:16:09 +00:00
|
|
|
class GrPipeline;
|
2014-11-11 00:03:14 +00:00
|
|
|
|
2014-11-05 22:47:41 +00:00
|
|
|
class MockGpu : public GrGpu {
|
|
|
|
public:
|
2015-05-22 19:41:05 +00:00
|
|
|
MockGpu(GrContext* context) : INHERITED(context) { fCaps.reset(SkNEW(GrCaps)); }
|
2015-03-26 01:17:31 +00:00
|
|
|
~MockGpu() override {}
|
|
|
|
bool canWriteTexturePixels(const GrTexture*, GrPixelConfig srcConfig) const override {
|
2014-11-05 22:47:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-11-26 20:28:00 +00:00
|
|
|
bool readPixelsWillPayForYFlip(GrRenderTarget* renderTarget,
|
|
|
|
int left, int top,
|
|
|
|
int width, int height,
|
|
|
|
GrPixelConfig config,
|
2015-03-26 01:17:31 +00:00
|
|
|
size_t rowBytes) const override { return false; }
|
2015-01-20 17:08:51 +00:00
|
|
|
void buildProgramDesc(GrProgramDesc*,const GrPrimitiveProcessor&,
|
2015-01-22 18:16:09 +00:00
|
|
|
const GrPipeline&,
|
2015-03-26 01:17:31 +00:00
|
|
|
const GrBatchTracker&) const override {}
|
2014-11-26 20:28:00 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void discard(GrRenderTarget*) override {}
|
2014-11-26 20:28:00 +00:00
|
|
|
|
2015-05-18 16:29:10 +00:00
|
|
|
bool canCopySurface(const GrSurface* dst,
|
|
|
|
const GrSurface* src,
|
|
|
|
const SkIRect& srcRect,
|
|
|
|
const SkIPoint& dstPoint) override { return false; };
|
|
|
|
|
2014-11-26 20:28:00 +00:00
|
|
|
bool copySurface(GrSurface* dst,
|
|
|
|
GrSurface* src,
|
|
|
|
const SkIRect& srcRect,
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkIPoint& dstPoint) override { return false; };
|
2014-11-26 20:28:00 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
bool initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) override {
|
2014-11-26 20:28:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-11-05 22:47:41 +00:00
|
|
|
|
2015-05-13 19:35:36 +00:00
|
|
|
void xferBarrier(GrRenderTarget*, GrXferBarrierType) override {}
|
2015-04-29 21:17:00 +00:00
|
|
|
|
2014-11-26 18:20:45 +00:00
|
|
|
private:
|
2015-03-26 01:17:31 +00:00
|
|
|
void onResetContext(uint32_t resetBits) override {}
|
2014-11-05 22:47:41 +00:00
|
|
|
|
2015-04-22 20:27:39 +00:00
|
|
|
GrTexture* onCreateTexture(const GrSurfaceDesc& desc, GrGpuResource::LifeCycle lifeCycle,
|
|
|
|
const void* srcData, size_t rowBytes) override {
|
2014-11-05 22:47:41 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-04-22 20:27:39 +00:00
|
|
|
GrTexture* onCreateCompressedTexture(const GrSurfaceDesc& desc, GrGpuResource::LifeCycle,
|
2015-03-26 01:17:31 +00:00
|
|
|
const void* srcData) override {
|
2014-11-05 22:47:41 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
GrTexture* onWrapBackendTexture(const GrBackendTextureDesc&) override { return NULL; }
|
2014-11-05 22:47:41 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
GrRenderTarget* onWrapBackendRenderTarget(const GrBackendRenderTargetDesc&) override {
|
2014-11-26 18:20:45 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2014-11-05 22:47:41 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
GrVertexBuffer* onCreateVertexBuffer(size_t size, bool dynamic) override { return NULL; }
|
2014-11-05 22:47:41 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
GrIndexBuffer* onCreateIndexBuffer(size_t size, bool dynamic) override { return NULL; }
|
2014-11-26 16:45:30 +00:00
|
|
|
|
2014-11-26 20:28:00 +00:00
|
|
|
void onClear(GrRenderTarget*, const SkIRect* rect, GrColor color,
|
2015-03-26 01:17:31 +00:00
|
|
|
bool canIgnoreRect) override {}
|
2014-11-26 16:45:30 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onClearStencilClip(GrRenderTarget*, const SkIRect& rect, bool insideClip) override {}
|
2014-11-26 20:28:00 +00:00
|
|
|
|
2015-05-07 18:35:55 +00:00
|
|
|
void onDraw(const DrawArgs&, const GrNonInstancedVertices&) override {}
|
2014-11-26 20:28:00 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onStencilPath(const GrPath* path, const StencilPathState& state) override {}
|
2014-12-16 21:05:12 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawPath(const DrawArgs&, const GrPath*, const GrStencilSettings&) override {}
|
2014-12-16 21:05:12 +00:00
|
|
|
|
2015-01-20 17:08:51 +00:00
|
|
|
void onDrawPaths(const DrawArgs&,
|
2014-12-16 21:05:12 +00:00
|
|
|
const GrPathRange*,
|
|
|
|
const void* indices,
|
|
|
|
GrDrawTarget::PathIndexType,
|
|
|
|
const float transformValues[],
|
|
|
|
GrDrawTarget::PathTransformType,
|
|
|
|
int count,
|
2015-03-26 01:17:31 +00:00
|
|
|
const GrStencilSettings&) override {}
|
2014-12-16 21:05:12 +00:00
|
|
|
|
2014-11-26 20:28:00 +00:00
|
|
|
bool onReadPixels(GrRenderTarget* target,
|
|
|
|
int left, int top, int width, int height,
|
|
|
|
GrPixelConfig,
|
|
|
|
void* buffer,
|
2015-03-26 01:17:31 +00:00
|
|
|
size_t rowBytes) override {
|
2014-11-05 22:47:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-11-26 20:28:00 +00:00
|
|
|
bool onWriteTexturePixels(GrTexture* texture,
|
|
|
|
int left, int top, int width, int height,
|
|
|
|
GrPixelConfig config, const void* buffer,
|
2015-03-26 01:17:31 +00:00
|
|
|
size_t rowBytes) override {
|
2014-11-05 22:47:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onResolveRenderTarget(GrRenderTarget* target) override { return; }
|
2014-11-05 22:47:41 +00:00
|
|
|
|
2015-04-16 18:22:42 +00:00
|
|
|
bool createStencilAttachmentForRenderTarget(GrRenderTarget*, int width, int height) override {
|
2014-11-05 22:47:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-04-16 18:22:42 +00:00
|
|
|
bool attachStencilAttachmentToRenderTarget(GrStencilAttachment*, GrRenderTarget*) override {
|
2014-11-05 22:47:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void clearStencil(GrRenderTarget* target) override {}
|
2014-11-05 22:47:41 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void didAddGpuTraceMarker() override {}
|
2014-11-05 22:47:41 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void didRemoveGpuTraceMarker() override {}
|
2014-11-05 22:47:41 +00:00
|
|
|
|
|
|
|
typedef GrGpu INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
GrContext* GrContext::CreateMockContext() {
|
2015-05-22 19:41:05 +00:00
|
|
|
GrContext* context = SkNEW_ARGS(GrContext, (Options()));
|
2014-11-05 22:47:41 +00:00
|
|
|
|
|
|
|
context->initMockContext();
|
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GrContext::initMockContext() {
|
|
|
|
SkASSERT(NULL == fGpu);
|
2015-05-22 19:41:05 +00:00
|
|
|
fGpu = SkNEW_ARGS(MockGpu, (this));
|
2014-11-05 22:47:41 +00:00
|
|
|
SkASSERT(fGpu);
|
|
|
|
this->initCommon();
|
|
|
|
|
|
|
|
// We delete these because we want to test the cache starting with zero resources. Also, none of
|
|
|
|
// these objects are required for any of tests that use this context. TODO: make stop allocating
|
|
|
|
// resources in the buffer pools.
|
|
|
|
SkDELETE(fDrawBuffer);
|
|
|
|
fDrawBuffer = NULL;
|
2015-05-07 16:51:43 +00:00
|
|
|
|
2014-11-05 22:47:41 +00:00
|
|
|
}
|