| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2013 Google Inc. | 3 * Copyright 2013 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 #ifndef GrCaps_DEFINED | 8 #ifndef GrCaps_DEFINED |
| 9 #define GrCaps_DEFINED | 9 #define GrCaps_DEFINED |
| 10 | 10 |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 | 228 |
| 229 // The first entry for each config is without msaa and the second is with. | 229 // The first entry for each config is without msaa and the second is with. |
| 230 bool fConfigRenderSupport[kGrPixelConfigCnt][2]; | 230 bool fConfigRenderSupport[kGrPixelConfigCnt][2]; |
| 231 bool fConfigTextureSupport[kGrPixelConfigCnt]; | 231 bool fConfigTextureSupport[kGrPixelConfigCnt]; |
| 232 | 232 |
| 233 private: | 233 private: |
| 234 typedef SkRefCnt INHERITED; | 234 typedef SkRefCnt INHERITED; |
| 235 }; | 235 }; |
| 236 | 236 |
| 237 #endif | 237 #endif |
| OLD | NEW |