tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 8 | #include "GrEffect.h" |
bsalomon@google.com | 2eaaefd | 2012-10-29 19:51:22 +0000 | [diff] [blame] | 9 | #include "GrBackendEffectFactory.h" |
| 10 | #include "GrContext.h" |
tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 11 | #include "GrMemoryPool.h" |
| 12 | #include "SkTLS.h" |
tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 13 | |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 14 | SK_DEFINE_INST_COUNT(GrEffect) |
robertphillips@google.com | 15e9d3e | 2012-06-21 20:25:03 +0000 | [diff] [blame] | 15 | |
bsalomon@google.com | d472620 | 2012-08-03 14:34:46 +0000 | [diff] [blame] | 16 | #if SK_ALLOW_STATIC_GLOBAL_INITIALIZERS |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 17 | SkTArray<GrEffectTestFactory*, true>* GrEffectTestFactory::GetFactories() { |
| 18 | static SkTArray<GrEffectTestFactory*, true> gFactories; |
bsalomon@google.com | d472620 | 2012-08-03 14:34:46 +0000 | [diff] [blame] | 19 | return &gFactories; |
| 20 | } |
| 21 | #endif |
| 22 | |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 23 | namespace GrEffectUnitTest { |
| 24 | const SkMatrix& TestMatrix(SkRandom* random) { |
| 25 | static SkMatrix gMatrices[5]; |
| 26 | static bool gOnce; |
| 27 | if (!gOnce) { |
| 28 | gMatrices[0].reset(); |
| 29 | gMatrices[1].setTranslate(SkIntToScalar(-100), SkIntToScalar(100)); |
| 30 | gMatrices[2].setRotate(SkIntToScalar(17)); |
| 31 | gMatrices[3].setRotate(SkIntToScalar(185)); |
| 32 | gMatrices[3].postTranslate(SkIntToScalar(66), SkIntToScalar(-33)); |
| 33 | gMatrices[3].postScale(SkIntToScalar(2), SK_ScalarHalf); |
| 34 | gMatrices[4].setRotate(SkIntToScalar(215)); |
| 35 | gMatrices[4].set(SkMatrix::kMPersp0, SkFloatToScalar(0.00013f)); |
| 36 | gMatrices[4].set(SkMatrix::kMPersp1, SkFloatToScalar(-0.000039f)); |
| 37 | gOnce = true; |
| 38 | } |
| 39 | return gMatrices[random->nextULessThan(static_cast<uint32_t>(SK_ARRAY_COUNT(gMatrices)))]; |
| 40 | } |
| 41 | } |
| 42 | |
bsalomon@google.com | 8ea78d8 | 2012-10-24 20:11:30 +0000 | [diff] [blame] | 43 | class GrEffect_Globals { |
tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 44 | public: |
| 45 | static GrMemoryPool* GetTLS() { |
| 46 | return (GrMemoryPool*)SkTLS::Get(CreateTLS, DeleteTLS); |
| 47 | } |
| 48 | |
| 49 | private: |
| 50 | static void* CreateTLS() { |
| 51 | return SkNEW_ARGS(GrMemoryPool, (4096, 4096)); |
| 52 | } |
| 53 | |
| 54 | static void DeleteTLS(void* pool) { |
| 55 | SkDELETE(reinterpret_cast<GrMemoryPool*>(pool)); |
| 56 | } |
| 57 | }; |
| 58 | |
bsalomon@google.com | 396e61f | 2012-10-25 19:00:29 +0000 | [diff] [blame] | 59 | int32_t GrBackendEffectFactory::fCurrEffectClassID = GrBackendEffectFactory::kIllegalEffectClassID; |
tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 60 | |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 61 | GrEffect::GrEffect(int numTextures) |
bsalomon@google.com | e6e62d1 | 2012-10-04 14:38:48 +0000 | [diff] [blame] | 62 | : fNumTextures(numTextures) { |
tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 63 | } |
| 64 | |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 65 | GrEffect::~GrEffect() { |
tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 66 | |
| 67 | } |
| 68 | |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 69 | bool GrEffect::isOpaque(bool inputTextureIsOpaque) const { |
tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 70 | return false; |
| 71 | } |
| 72 | |
bsalomon@google.com | 2eaaefd | 2012-10-29 19:51:22 +0000 | [diff] [blame] | 73 | const char* GrEffect::name() const { |
| 74 | return this->getFactory().name(); |
| 75 | } |
| 76 | |
| 77 | |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 78 | bool GrEffect::isEqual(const GrEffect& s) const { |
tomhudson@google.com | d0c1a06 | 2012-07-12 17:23:52 +0000 | [diff] [blame] | 79 | if (this->numTextures() != s.numTextures()) { |
| 80 | return false; |
| 81 | } |
bsalomon@google.com | 6d003d1 | 2012-09-11 15:45:20 +0000 | [diff] [blame] | 82 | for (int i = 0; i < this->numTextures(); ++i) { |
bsalomon@google.com | 1ce49fc | 2012-09-18 14:14:49 +0000 | [diff] [blame] | 83 | if (this->textureAccess(i) != s.textureAccess(i)) { |
tomhudson@google.com | d0c1a06 | 2012-07-12 17:23:52 +0000 | [diff] [blame] | 84 | return false; |
| 85 | } |
| 86 | } |
| 87 | return true; |
| 88 | } |
| 89 | |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 90 | const GrTextureAccess& GrEffect::textureAccess(int index) const { |
bsalomon@google.com | 6d003d1 | 2012-09-11 15:45:20 +0000 | [diff] [blame] | 91 | GrCrash("We shouldn't be calling this function on the base class."); |
| 92 | static GrTextureAccess kDummy; |
| 93 | return kDummy; |
twiz@google.com | a5e65ec | 2012-08-02 15:15:16 +0000 | [diff] [blame] | 94 | } |
| 95 | |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 96 | void * GrEffect::operator new(size_t size) { |
bsalomon@google.com | 8ea78d8 | 2012-10-24 20:11:30 +0000 | [diff] [blame] | 97 | return GrEffect_Globals::GetTLS()->allocate(size); |
tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 98 | } |
| 99 | |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 100 | void GrEffect::operator delete(void* target) { |
bsalomon@google.com | 8ea78d8 | 2012-10-24 20:11:30 +0000 | [diff] [blame] | 101 | GrEffect_Globals::GetTLS()->release(target); |
tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 102 | } |