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

Side by Side Diff: webkit/common/gpu/gl_bindings_skia_cmd_buffer.cc

Issue 16046003: Move webkit/gpu into webkit/common/gpu (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix includes in content/common/gpu/client/gl_helper_* Created 7 years, 7 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/gpu/gl_bindings_skia_cmd_buffer.h" 5 #include "webkit/common/gpu/gl_bindings_skia_cmd_buffer.h"
6 6
7 #ifndef GL_GLEXT_PROTOTYPES 7 #ifndef GL_GLEXT_PROTOTYPES
8 #define GL_GLEXT_PROTOTYPES 8 #define GL_GLEXT_PROTOTYPES
9 #endif 9 #endif
10 #include "gpu/GLES2/gl2extchromium.h" 10 #include "gpu/GLES2/gl2extchromium.h"
11 #include "third_party/khronos/GLES2/gl2.h" 11 #include "third_party/khronos/GLES2/gl2.h"
12 #include "third_party/khronos/GLES2/gl2ext.h" 12 #include "third_party/khronos/GLES2/gl2ext.h"
13 #include "third_party/skia/include/gpu/gl/GrGLInterface.h" 13 #include "third_party/skia/include/gpu/gl/GrGLInterface.h"
14 14
15 namespace webkit { 15 namespace webkit {
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 interface->fGetRenderbufferParameteriv = glGetRenderbufferParameteriv; 119 interface->fGetRenderbufferParameteriv = glGetRenderbufferParameteriv;
120 interface->fRenderbufferStorage = glRenderbufferStorage; 120 interface->fRenderbufferStorage = glRenderbufferStorage;
121 interface->fRenderbufferStorageMultisample = 121 interface->fRenderbufferStorageMultisample =
122 glRenderbufferStorageMultisampleEXT; 122 glRenderbufferStorageMultisampleEXT;
123 interface->fBlitFramebuffer = glBlitFramebufferEXT; 123 interface->fBlitFramebuffer = glBlitFramebufferEXT;
124 return interface; 124 return interface;
125 } 125 }
126 126
127 } // namespace gpu 127 } // namespace gpu
128 } // namespace webkit 128 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/common/gpu/gl_bindings_skia_cmd_buffer.h ('k') | webkit/common/gpu/grcontext_for_webgraphicscontext3d.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698