| 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 | 8 |
| 9 #ifndef GrGLSLCaps_DEFINED | 9 #ifndef GrGLSLCaps_DEFINED |
| 10 #define GrGLSLCaps_DEFINED | 10 #define GrGLSLCaps_DEFINED |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 | 151 |
| 152 const char* fFBFetchColorName; | 152 const char* fFBFetchColorName; |
| 153 const char* fFBFetchExtensionString; | 153 const char* fFBFetchExtensionString; |
| 154 | 154 |
| 155 AdvBlendEqInteraction fAdvBlendEqInteraction; | 155 AdvBlendEqInteraction fAdvBlendEqInteraction; |
| 156 | 156 |
| 157 GrSwizzle fConfigTextureSwizzle[kGrPixelConfigCnt]; | 157 GrSwizzle fConfigTextureSwizzle[kGrPixelConfigCnt]; |
| 158 GrSwizzle fConfigOutputSwizzle[kGrPixelConfigCnt]; | 158 GrSwizzle fConfigOutputSwizzle[kGrPixelConfigCnt]; |
| 159 | 159 |
| 160 friend class GrGLCaps; // For initialization. | 160 friend class GrGLCaps; // For initialization. |
| 161 friend class GrVkCaps; |
| 161 | 162 |
| 162 typedef GrShaderCaps INHERITED; | 163 typedef GrShaderCaps INHERITED; |
| 163 }; | 164 }; |
| 164 | 165 |
| 165 #endif | 166 #endif |
| OLD | NEW |