| 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 GrGLCaps_DEFINED | 9 #ifndef GrGLCaps_DEFINED |
| 10 #define GrGLCaps_DEFINED | 10 #define GrGLCaps_DEFINED |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 return fFormat == rhs.fFormat | 388 return fFormat == rhs.fFormat |
| 389 && fType == rhs.fType | 389 && fType == rhs.fType |
| 390 && fFboFormat == rhs.fFboFormat; | 390 && fFboFormat == rhs.fFboFormat; |
| 391 } | 391 } |
| 392 }; | 392 }; |
| 393 mutable SkTHashMap<ReadPixelsSupportedFormat, bool> fReadPixelsSupportedCach
e; | 393 mutable SkTHashMap<ReadPixelsSupportedFormat, bool> fReadPixelsSupportedCach
e; |
| 394 | 394 |
| 395 typedef GrDrawTargetCaps INHERITED; | 395 typedef GrDrawTargetCaps INHERITED; |
| 396 }; | 396 }; |
| 397 | 397 |
| 398 typedef GrGLCaps GrGLSLCaps; |
| 399 |
| 398 #endif | 400 #endif |
| OLD | NEW |