| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "GrProcessor.h" | 8 #include "GrProcessor.h" |
| 9 #include "GrContext.h" | 9 #include "GrContext.h" |
| 10 #include "GrCoordTransform.h" | 10 #include "GrCoordTransform.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 GrProcessorTestFactory<GrGeometryProcessor>::GetFactories() { | 43 GrProcessorTestFactory<GrGeometryProcessor>::GetFactories() { |
| 44 static SkTArray<GrProcessorTestFactory<GrGeometryProcessor>*, true> gFactori
es; | 44 static SkTArray<GrProcessorTestFactory<GrGeometryProcessor>*, true> gFactori
es; |
| 45 return &gFactories; | 45 return &gFactories; |
| 46 } | 46 } |
| 47 | 47 |
| 48 /* | 48 /* |
| 49 * To ensure we always have successful static initialization, before creating fr
om the factories | 49 * To ensure we always have successful static initialization, before creating fr
om the factories |
| 50 * we verify the count is as expected. If a new factory is added, then these nu
mbers must be | 50 * we verify the count is as expected. If a new factory is added, then these nu
mbers must be |
| 51 * manually adjusted. | 51 * manually adjusted. |
| 52 */ | 52 */ |
| 53 static const int kFPFactoryCount = 37; | 53 static const int kFPFactoryCount = 38; |
| 54 static const int kGPFactoryCount = 14; | 54 static const int kGPFactoryCount = 14; |
| 55 static const int kXPFactoryCount = 5; | 55 static const int kXPFactoryCount = 5; |
| 56 | 56 |
| 57 template<> | 57 template<> |
| 58 void GrProcessorTestFactory<GrFragmentProcessor>::VerifyFactoryCount() { | 58 void GrProcessorTestFactory<GrFragmentProcessor>::VerifyFactoryCount() { |
| 59 if (kFPFactoryCount != GetFactories()->count()) { | 59 if (kFPFactoryCount != GetFactories()->count()) { |
| 60 SkFAIL("Wrong number of fragment processor factories!"); | 60 SkFAIL("Wrong number of fragment processor factories!"); |
| 61 } | 61 } |
| 62 } | 62 } |
| 63 | 63 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 ////////////////////////////////////////////////////////////////////////////////
/////////////////// | 250 ////////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 251 | 251 |
| 252 // GrProcessorDataManager lives in the same pool | 252 // GrProcessorDataManager lives in the same pool |
| 253 void* GrProcessorDataManager::operator new(size_t size) { | 253 void* GrProcessorDataManager::operator new(size_t size) { |
| 254 return MemoryPoolAccessor().pool()->allocate(size); | 254 return MemoryPoolAccessor().pool()->allocate(size); |
| 255 } | 255 } |
| 256 | 256 |
| 257 void GrProcessorDataManager::operator delete(void* target) { | 257 void GrProcessorDataManager::operator delete(void* target) { |
| 258 return MemoryPoolAccessor().pool()->release(target); | 258 return MemoryPoolAccessor().pool()->release(target); |
| 259 } | 259 } |
| OLD | NEW |