Index: src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp |
diff --git a/src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp b/src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp |
deleted file mode 100644 |
index ddc9e693a4d6825d9e6a29c7bb73a3733d3b5026..0000000000000000000000000000000000000000 |
--- a/src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
- |
-/* |
- * Copyright 2014 Google Inc. |
- * |
- * Use of this source code is governed by a BSD-style license that can be |
- * found in the LICENSE file. |
- */ |
-#include "gl/GrGLInterface.h" |
-#include "gl/GrGLAssembleInterface.h" |
-#include "gl/GrGLUtil.h" |
- |
-#include <EGL/egl.h> |
-#include <GLES2/gl2.h> |
- |
-static GrGLFuncPtr egl_get_gl_proc(void* ctx, const char name[]) { |
- SkASSERT(NULL == ctx); |
- return eglGetProcAddress(name); |
-} |
- |
-const GrGLInterface* GrGLCreateNativeInterface() { |
- return GrGLAssembleInterface(NULL, egl_get_gl_proc); |
-} |