OLD | NEW |
| 1 /* |
| 2 * Copyright 2014 Google Inc. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. |
| 6 */ |
| 7 |
1 #ifndef DMGpuSupport_DEFINED | 8 #ifndef DMGpuSupport_DEFINED |
2 #define DMGpuSupport_DEFINED | 9 #define DMGpuSupport_DEFINED |
3 | 10 |
4 // Provides Ganesh to DM, | 11 // Provides Ganesh to DM, |
5 // or if it's not available, fakes it enough so most code doesn't have to know t
hat. | 12 // or if it's not available, fakes it enough so most code doesn't have to know t
hat. |
6 | 13 |
7 #include "SkSurface.h" | 14 #include "SkSurface.h" |
8 | 15 |
9 #if SK_SUPPORT_GPU | 16 #if SK_SUPPORT_GPU |
10 | 17 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 int, | 82 int, |
76 bool) { | 83 bool) { |
77 return NULL; | 84 return NULL; |
78 } | 85 } |
79 | 86 |
80 } // namespace DM | 87 } // namespace DM |
81 | 88 |
82 #endif//SK_SUPPORT_GPU | 89 #endif//SK_SUPPORT_GPU |
83 | 90 |
84 #endif//DMGpuSupport_DEFINED | 91 #endif//DMGpuSupport_DEFINED |
OLD | NEW |