59e7d23852
Reason for revert: Breaks chrome build. Original issue's description: > Factor GrTexture into public GrTexture and private GrTextureImpl. > > Committed: http://code.google.com/p/skia/source/detail?r=14680 R=jvanverth@google.com, robertphillips@google.com TBR=jvanverth@google.com, robertphillips@google.com NOTREECHECKS=true NOTRY=true Author: bsalomon@google.com Review URL: https://codereview.chromium.org/278073002 git-svn-id: http://skia.googlecode.com/svn/trunk@14681 2bbb7eff-a529-9590-31e7-b0007b416f81
240 lines
6.4 KiB
C++
240 lines
6.4 KiB
C++
|
|
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
#include "GrContext.h"
|
|
#include "GrCacheable.h"
|
|
#include "GrResourceCache.h"
|
|
#include "GrStencilBuffer.h"
|
|
#include "GrTexture.h"
|
|
#include "SkBenchmark.h"
|
|
#include "SkCanvas.h"
|
|
|
|
enum {
|
|
CACHE_SIZE_COUNT = 2048,
|
|
CACHE_SIZE_BYTES = 2 * 1024 * 1024,
|
|
};
|
|
|
|
class StencilResource : public GrCacheable {
|
|
public:
|
|
SK_DECLARE_INST_COUNT(StencilResource);
|
|
StencilResource(int id)
|
|
: fID(id) {
|
|
}
|
|
|
|
virtual size_t gpuMemorySize() const SK_OVERRIDE {
|
|
return 100 + ((fID % 1 == 0) ? -5 : 6);
|
|
}
|
|
|
|
virtual bool isValidOnGpu() const SK_OVERRIDE {
|
|
return true;
|
|
}
|
|
|
|
static GrResourceKey ComputeKey(int width, int height, int sampleCnt) {
|
|
return GrStencilBuffer::ComputeKey(width, height, sampleCnt);
|
|
}
|
|
|
|
int fID;
|
|
|
|
private:
|
|
typedef GrCacheable INHERITED;
|
|
};
|
|
|
|
class TextureResource : public GrCacheable {
|
|
public:
|
|
SK_DECLARE_INST_COUNT(TextureResource);
|
|
TextureResource(int id)
|
|
: fID(id) {
|
|
}
|
|
|
|
virtual size_t gpuMemorySize() const SK_OVERRIDE {
|
|
return 100 + ((fID % 1 == 0) ? -40 : 33);
|
|
}
|
|
|
|
virtual bool isValidOnGpu() const SK_OVERRIDE {
|
|
return true;
|
|
}
|
|
|
|
static GrResourceKey ComputeKey(const GrTextureDesc& desc) {
|
|
return GrTexture::ComputeScratchKey(desc);
|
|
}
|
|
|
|
int fID;
|
|
|
|
private:
|
|
typedef GrCacheable INHERITED;
|
|
};
|
|
|
|
static void get_stencil(int i, int* w, int* h, int* s) {
|
|
*w = i % 1024;
|
|
*h = i * 2 % 1024;
|
|
*s = i % 1 == 0 ? 0 : 4;
|
|
}
|
|
|
|
static void get_texture_desc(int i, GrTextureDesc* desc) {
|
|
desc->fFlags = kRenderTarget_GrTextureFlagBit |
|
|
kNoStencil_GrTextureFlagBit;
|
|
desc->fWidth = i % 1024;
|
|
desc->fHeight = i * 2 % 1024;
|
|
desc->fConfig = static_cast<GrPixelConfig>(i % (kLast_GrPixelConfig + 1));
|
|
desc->fSampleCnt = i % 1 == 0 ? 0 : 4;
|
|
}
|
|
|
|
static void populate_cache(GrResourceCache* cache, GrGpu* gpu, int resourceCount) {
|
|
for (int i = 0; i < resourceCount; ++i) {
|
|
int w, h, s;
|
|
get_stencil(i, &w, &h, &s);
|
|
GrResourceKey key = GrStencilBuffer::ComputeKey(w, h, s);
|
|
GrCacheable* resource = SkNEW_ARGS(StencilResource, (i));
|
|
cache->purgeAsNeeded(1, resource->gpuMemorySize());
|
|
cache->addResource(key, resource);
|
|
resource->unref();
|
|
}
|
|
|
|
for (int i = 0; i < resourceCount; ++i) {
|
|
GrTextureDesc desc;
|
|
get_texture_desc(i, &desc);
|
|
GrResourceKey key = TextureResource::ComputeKey(desc);
|
|
GrCacheable* resource = SkNEW_ARGS(TextureResource, (i));
|
|
cache->purgeAsNeeded(1, resource->gpuMemorySize());
|
|
cache->addResource(key, resource);
|
|
resource->unref();
|
|
}
|
|
}
|
|
|
|
static void check_cache_contents_or_die(GrResourceCache* cache, int k) {
|
|
// Benchmark find calls that succeed.
|
|
{
|
|
GrTextureDesc desc;
|
|
get_texture_desc(k, &desc);
|
|
GrResourceKey key = TextureResource::ComputeKey(desc);
|
|
GrCacheable* item = cache->find(key);
|
|
if (NULL == item) {
|
|
SkFAIL("cache add does not work as expected");
|
|
return;
|
|
}
|
|
if (static_cast<TextureResource*>(item)->fID != k) {
|
|
SkFAIL("cache add does not work as expected");
|
|
return;
|
|
}
|
|
}
|
|
{
|
|
int w, h, s;
|
|
get_stencil(k, &w, &h, &s);
|
|
GrResourceKey key = StencilResource::ComputeKey(w, h, s);
|
|
GrCacheable* item = cache->find(key);
|
|
if (NULL == item) {
|
|
SkFAIL("cache add does not work as expected");
|
|
return;
|
|
}
|
|
if (static_cast<TextureResource*>(item)->fID != k) {
|
|
SkFAIL("cache add does not work as expected");
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Benchmark also find calls that always fail.
|
|
{
|
|
GrTextureDesc desc;
|
|
get_texture_desc(k, &desc);
|
|
desc.fHeight |= 1;
|
|
GrResourceKey key = TextureResource::ComputeKey(desc);
|
|
GrCacheable* item = cache->find(key);
|
|
if (NULL != item) {
|
|
SkFAIL("cache add does not work as expected");
|
|
return;
|
|
}
|
|
}
|
|
{
|
|
int w, h, s;
|
|
get_stencil(k, &w, &h, &s);
|
|
h |= 1;
|
|
GrResourceKey key = StencilResource::ComputeKey(w, h, s);
|
|
GrCacheable* item = cache->find(key);
|
|
if (NULL != item) {
|
|
SkFAIL("cache add does not work as expected");
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
class GrResourceCacheBenchAdd : public SkBenchmark {
|
|
enum {
|
|
RESOURCE_COUNT = CACHE_SIZE_COUNT / 2,
|
|
DUPLICATE_COUNT = CACHE_SIZE_COUNT / 4,
|
|
};
|
|
|
|
public:
|
|
virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
|
|
return backend == kGPU_Backend;
|
|
}
|
|
|
|
protected:
|
|
virtual const char* onGetName() SK_OVERRIDE {
|
|
return "grresourcecache_add";
|
|
}
|
|
|
|
virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE {
|
|
GrGpu* gpu = canvas->getGrContext()->getGpu();
|
|
|
|
for (int i = 0; i < loops; ++i) {
|
|
GrResourceCache cache(CACHE_SIZE_COUNT, CACHE_SIZE_BYTES);
|
|
populate_cache(&cache, gpu, DUPLICATE_COUNT);
|
|
populate_cache(&cache, gpu, RESOURCE_COUNT);
|
|
|
|
// Check that cache works.
|
|
for (int k = 0; k < RESOURCE_COUNT; k += 33) {
|
|
check_cache_contents_or_die(&cache, k);
|
|
}
|
|
cache.purgeAllUnlocked();
|
|
}
|
|
}
|
|
|
|
private:
|
|
typedef SkBenchmark INHERITED;
|
|
};
|
|
|
|
class GrResourceCacheBenchFind : public SkBenchmark {
|
|
enum {
|
|
RESOURCE_COUNT = (CACHE_SIZE_COUNT / 2) - 100,
|
|
DUPLICATE_COUNT = 100
|
|
};
|
|
|
|
public:
|
|
virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
|
|
return backend == kGPU_Backend;
|
|
}
|
|
|
|
protected:
|
|
virtual const char* onGetName() SK_OVERRIDE {
|
|
return "grresourcecache_find";
|
|
}
|
|
|
|
virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE {
|
|
GrGpu* gpu = canvas->getGrContext()->getGpu();
|
|
GrResourceCache cache(CACHE_SIZE_COUNT, CACHE_SIZE_BYTES);
|
|
populate_cache(&cache, gpu, DUPLICATE_COUNT);
|
|
populate_cache(&cache, gpu, RESOURCE_COUNT);
|
|
|
|
for (int i = 0; i < loops; ++i) {
|
|
for (int k = 0; k < RESOURCE_COUNT; ++k) {
|
|
check_cache_contents_or_die(&cache, k);
|
|
}
|
|
}
|
|
}
|
|
|
|
private:
|
|
typedef SkBenchmark INHERITED;
|
|
};
|
|
|
|
DEF_BENCH( return new GrResourceCacheBenchAdd(); )
|
|
DEF_BENCH( return new GrResourceCacheBenchFind(); )
|
|
|
|
#endif
|