73a9694b4c
R=jvanverth@google.com Review URL: https://codereview.appspot.com/7306097 git-svn-id: http://skia.googlecode.com/svn/trunk@7721 2bbb7eff-a529-9590-31e7-b0007b416f81
88 lines
2.8 KiB
C++
88 lines
2.8 KiB
C++
/*
|
|
* Copyright 2012 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef GrEffectUnitTest_DEFINED
|
|
#define GrEffectUnitTest_DEFINED
|
|
|
|
#include "SkRandom.h"
|
|
#include "GrNoncopyable.h"
|
|
#include "SkTArray.h"
|
|
|
|
class SkMatrix;
|
|
|
|
namespace GrEffectUnitTest {
|
|
// Used to access the dummy textures in TestCreate procs.
|
|
enum {
|
|
kSkiaPMTextureIdx = 0,
|
|
kAlphaTextureIdx = 1,
|
|
};
|
|
|
|
/**
|
|
* A helper for use in GrEffect::TestCreate functions.
|
|
*/
|
|
const SkMatrix& TestMatrix(SkMWCRandom*);
|
|
|
|
}
|
|
|
|
#if SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
|
|
|
|
class GrContext;
|
|
class GrEffectRef;
|
|
class GrTexture;
|
|
|
|
class GrEffectTestFactory : GrNoncopyable {
|
|
public:
|
|
|
|
typedef GrEffectRef* (*CreateProc)(SkMWCRandom*, GrContext*, GrTexture* dummyTextures[]);
|
|
|
|
GrEffectTestFactory(CreateProc createProc) {
|
|
fCreateProc = createProc;
|
|
GetFactories()->push_back(this);
|
|
}
|
|
|
|
static GrEffectRef* CreateStage(SkMWCRandom* random,
|
|
GrContext* context,
|
|
GrTexture* dummyTextures[]) {
|
|
uint32_t idx = random->nextRangeU(0, GetFactories()->count() - 1);
|
|
GrEffectTestFactory* factory = (*GetFactories())[idx];
|
|
return factory->fCreateProc(random, context, dummyTextures);
|
|
}
|
|
|
|
private:
|
|
CreateProc fCreateProc;
|
|
static SkTArray<GrEffectTestFactory*, true>* GetFactories();
|
|
};
|
|
|
|
/** GrEffect subclasses should insert this macro in their declaration to be included in the
|
|
* program generation unit test.
|
|
*/
|
|
#define GR_DECLARE_EFFECT_TEST \
|
|
static GrEffectTestFactory gTestFactory; \
|
|
static GrEffectRef* TestCreate(SkMWCRandom*, GrContext*, GrTexture* dummyTextures[2])
|
|
|
|
/** GrEffect subclasses should insert this macro in their implementation file. They must then
|
|
* also implement this static function:
|
|
* GrEffect* TestCreate(SkMWCRandom*, GrContext*, GrTexture* dummyTextures[2]);
|
|
* dummyTextures[] are valid textures that can optionally be used to construct GrTextureAccesses.
|
|
* The first texture has config kSkia8888_GrPixelConfig and the second has
|
|
* kAlpha_8_GrPixelConfig. TestCreate functions are also free to create additional textures using
|
|
* the GrContext.
|
|
*/
|
|
#define GR_DEFINE_EFFECT_TEST(Effect) \
|
|
GrEffectTestFactory Effect :: gTestFactory(Effect :: TestCreate)
|
|
|
|
#else // !SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
|
|
|
|
// The unit test relies on static initializers. Just declare the TestCreate function so that
|
|
// its definitions will compile.
|
|
#define GR_DECLARE_EFFECT_TEST \
|
|
static GrEffectRef* TestCreate(SkMWCRandom*, GrContext*, GrTexture* dummyTextures[2])
|
|
#define GR_DEFINE_EFFECT_TEST(X)
|
|
|
|
#endif // !SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
|
|
#endif
|