| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 150 |
| 151 void GrFragmentProcessor::computeInvariantOutput(GrInvariantOutput* inout) const
{ | 151 void GrFragmentProcessor::computeInvariantOutput(GrInvariantOutput* inout) const
{ |
| 152 this->onComputeInvariantOutput(inout); | 152 this->onComputeInvariantOutput(inout); |
| 153 } | 153 } |
| 154 | 154 |
| 155 ////////////////////////////////////////////////////////////////////////////////
/////////////////// | 155 ////////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 156 | 156 |
| 157 // Initial static variable from GrXPFactory | 157 // Initial static variable from GrXPFactory |
| 158 int32_t GrXPFactory::gCurrXPFClassID = | 158 int32_t GrXPFactory::gCurrXPFClassID = |
| 159 GrXPFactory::kIllegalXPFClassID; | 159 GrXPFactory::kIllegalXPFClassID; |
| 160 |
| 161 ////////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 162 |
| 163 // GrProcessorDataManager lives in the same pool |
| 164 void* GrProcessorDataManager::operator new(size_t size) { |
| 165 return MemoryPoolAccessor().pool()->allocate(size); |
| 166 } |
| 167 |
| 168 void GrProcessorDataManager::operator delete(void* target) { |
| 169 return MemoryPoolAccessor().pool()->release(target); |
| 170 } |
| OLD | NEW |