Index: ui/gl/gl_image_android.cc |
diff --git a/ui/gl/gl_image_android.cc b/ui/gl/gl_image_android.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..002d3cf95c831d0151a3aba7578b43d1bd401d93 |
--- /dev/null |
+++ b/ui/gl/gl_image_android.cc |
@@ -0,0 +1,25 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ui/gl/gl_image.h" |
+ |
+#include "base/debug/trace_event.h" |
+#include "ui/gl/gl_implementation.h" |
+ |
+namespace gfx { |
+ |
+scoped_refptr<GLImage> GLImage::CreatePixmapGLImage( |
+ GLSurface* compatible_surface) { |
+ TRACE_EVENT0("gpu", "GLImage::CreatePixmapGLImage"); |
+ switch (GetGLImplementation()) { |
+ case kGLImplementationEGLGLES2: { |
+ return NULL; |
+ } |
+ default: |
+ NOTREACHED(); |
+ return NULL; |
+ } |
+} |
+ |
+} // namespace gfx |