Revert of Cleanup: Remove remaining generated extensions APIs on Android. (patchset...
[chromium-blink-merge.git] / gpu / gles2_conform_support / native / egl_native_aura.cc
blobf3eea4726c368afb73059471cb88ca249a7a23e2
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // This is just a compile fix. If this is really needed when using aura, the
6 // methods below should be filled out.
8 #include <EGL/egl.h>
9 #include <EGL/eglext.h>
11 #include "base/logging.h"
13 extern "C" {
14 #if defined(GLES2_CONFORM_SUPPORT_ONLY)
15 #include "gpu/gles2_conform_support/gtf/gtf_stubs.h"
16 #else
17 #include "third_party/gles2_conform/GTF_ES/glsl/GTF/Source/eglNative.h"
18 #endif
20 GTFbool GTFNativeCreateDisplay(EGLNativeDisplayType *pNativeDisplay) {
21 NOTIMPLEMENTED();
22 return GTFfalse;
25 void GTFNativeDestroyDisplay(EGLNativeDisplayType nativeDisplay) {
26 NOTIMPLEMENTED();
29 void GTFNativeDestroyWindow(EGLNativeDisplayType nativeDisplay,
30 EGLNativeWindowType nativeWindow) {
31 NOTIMPLEMENTED();
34 GTFbool GTFNativeCreateWindow(EGLNativeDisplayType nativeDisplay,
35 EGLDisplay eglDisplay, EGLConfig eglConfig,
36 const char* title, int width, int height,
37 EGLNativeWindowType *pNativeWindow) {
38 NOTIMPLEMENTED();
39 return GTFfalse;
42 } // extern "C"