Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: runtime/embedders/openglui/common/opengl.h

Issue 13042015: Various OpenGLUI changes: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // A semi-generic header file that can be used to isolate platform differences 5 // A semi-generic header file that can be used to isolate platform differences
6 // for OpenGL headers. 6 // for OpenGL headers.
7 #ifndef EMBEDDERS_OPENGLUI_COMMON_OPENGL_H_ 7 #ifndef EMBEDDERS_OPENGLUI_COMMON_OPENGL_H_
8 #define EMBEDDERS_OPENGLUI_COMMON_OPENGL_H_ 8 #define EMBEDDERS_OPENGLUI_COMMON_OPENGL_H_
9 9
10 #if defined(__APPLE__) 10 #if defined(__APPLE__)
(...skipping 27 matching lines...) Expand all
38 # include <GL/glut.h> 38 # include <GL/glut.h>
39 # define GLSwapBuffers() glutSwapBuffers() 39 # define GLSwapBuffers() glutSwapBuffers()
40 #endif 40 #endif
41 41
42 #include "core/SkCanvas.h" 42 #include "core/SkCanvas.h"
43 #include "core/SkGraphics.h" 43 #include "core/SkGraphics.h"
44 #include "core/SkPaint.h" 44 #include "core/SkPaint.h"
45 #include "core/SkTypeface.h" 45 #include "core/SkTypeface.h"
46 #include "effects/SkBlurDrawLooper.h" 46 #include "effects/SkBlurDrawLooper.h"
47 #include "effects/SkDashPathEffect.h" 47 #include "effects/SkDashPathEffect.h"
48 #include "effects/SkGradientShader.h"
48 #include "gpu/SkGpuDevice.h" 49 #include "gpu/SkGpuDevice.h"
49 #include "gpu/GrContext.h" 50 #include "gpu/GrContext.h"
50 #include "gpu/GrRenderTarget.h" 51 #include "gpu/GrRenderTarget.h"
51 #include "gpu/gl/GrGLInterface.h" 52 #include "gpu/gl/GrGLInterface.h"
52 #include "gpu/gl/SkNativeGLContext.h" 53 #include "gpu/gl/SkNativeGLContext.h"
53 #include "images/SkImageDecoder.h" 54 #include "images/SkImageDecoder.h"
54 55
55 #endif // EMBEDDERS_OPENGLUI_COMMON_OPENGL_H_ 56 #endif // EMBEDDERS_OPENGLUI_COMMON_OPENGL_H_
56 57
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698