| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 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 #include "SkTypes.h" | 8 #include "SkTypes.h" |
| 9 | 9 |
| 10 #if defined(SK_BUILD_FOR_WIN) | 10 #if defined(SK_BUILD_FOR_WIN) |
| 11 | 11 |
| 12 #include <GL/gl.h> | 12 #include <GL/gl.h> |
| 13 #include <WindowsX.h> | 13 #include <WindowsX.h> |
| 14 #include "SkWGL.h" | 14 #include "win/SkWGL.h" |
| 15 #include "SkWindow.h" | 15 #include "SkWindow.h" |
| 16 #include "SkCanvas.h" | 16 #include "SkCanvas.h" |
| 17 #include "SkOSMenu.h" | 17 #include "SkOSMenu.h" |
| 18 #include "SkTime.h" | 18 #include "SkTime.h" |
| 19 #include "SkUtils.h" | 19 #include "SkUtils.h" |
| 20 | 20 |
| 21 #include "SkGraphics.h" | 21 #include "SkGraphics.h" |
| 22 | 22 |
| 23 #if SK_ANGLE | 23 #if SK_ANGLE |
| 24 #include "gl/GrGLInterface.h" | 24 #include "gl/GrGLInterface.h" |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 break; | 610 break; |
| 611 #endif // SK_ANGLE | 611 #endif // SK_ANGLE |
| 612 #endif // SK_SUPPORT_GPU | 612 #endif // SK_SUPPORT_GPU |
| 613 default: | 613 default: |
| 614 SkASSERT(false); | 614 SkASSERT(false); |
| 615 break; | 615 break; |
| 616 } | 616 } |
| 617 } | 617 } |
| 618 | 618 |
| 619 #endif | 619 #endif |
| OLD | NEW |