| 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 #ifndef GrBackendEffectFactory_DEFINED | 8 #ifndef GrBackendEffectFactory_DEFINED |
| 9 #define GrBackendEffectFactory_DEFINED | 9 #define GrBackendEffectFactory_DEFINED |
| 10 | 10 |
| 11 #include "GrTypes.h" | 11 #include "GrTypes.h" |
| 12 #include "SkTemplates.h" | 12 #include "SkTemplates.h" |
| 13 #include "SkThread.h" |
| 13 #include "SkTypes.h" | 14 #include "SkTypes.h" |
| 14 | 15 |
| 15 #include "../../src/core/SkThread.h" | |
| 16 | |
| 17 /** Given a GrEffect of a particular type, creates the corresponding graphics-ba
ckend-specific | 16 /** Given a GrEffect of a particular type, creates the corresponding graphics-ba
ckend-specific |
| 18 effect object. Also tracks equivalence of shaders generated via a key. Each
factory instance | 17 effect object. Also tracks equivalence of shaders generated via a key. Each
factory instance |
| 19 is assigned a generation ID at construction. The ID of the return of GrEffec
t::getFactory() | 18 is assigned a generation ID at construction. The ID of the return of GrEffec
t::getFactory() |
| 20 is used as a type identifier. Thus a GrEffect subclass must return a singlet
on from | 19 is used as a type identifier. Thus a GrEffect subclass must return a singlet
on from |
| 21 getFactory(). GrEffect subclasses should use the derived class GrTBackendEff
ectFactory that is | 20 getFactory(). GrEffect subclasses should use the derived class GrTBackendEff
ectFactory that is |
| 22 templated on the GrEffect subclass as their factory object. It requires that
the GrEffect | 21 templated on the GrEffect subclass as their factory object. It requires that
the GrEffect |
| 23 subclass has a nested class (or typedef) GLEffect which is its GL implementa
tion and a subclass | 22 subclass has a nested class (or typedef) GLEffect which is its GL implementa
tion and a subclass |
| 24 of GrGLEffect. | 23 of GrGLEffect. |
| 25 */ | 24 */ |
| 26 | 25 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 return static_cast<EffectKey>(id); | 81 return static_cast<EffectKey>(id); |
| 83 } | 82 } |
| 84 | 83 |
| 85 EffectKey fEffectClassID; | 84 EffectKey fEffectClassID; |
| 86 | 85 |
| 87 private: | 86 private: |
| 88 static int32_t fCurrEffectClassID; | 87 static int32_t fCurrEffectClassID; |
| 89 }; | 88 }; |
| 90 | 89 |
| 91 #endif | 90 #endif |
| OLD | NEW |