NOTE: This project has moved to http://gitorious.org/meego-graphics/glmemperf
[glmemperf] / native.h
diff --git a/native.h b/native.h
deleted file mode 100644 (file)
index 6a30c18..0000000
--- a/native.h
+++ /dev/null
@@ -1,83 +0,0 @@
-/**
- * OpenGL ES 2.0 memory performance estimator
- * Copyright (C) 2009 Nokia
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * \author Sami Kyöstilä <sami.kyostila@nokia.com>
- *
- * Native windowing
- */
-#include <EGL/egl.h>
-
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
-/**
- *  Create a native display
- */
-EGLBoolean nativeCreateDisplay(EGLNativeDisplayType *pNativeDisplay);
-
-/**
- *  Destroy a native display
- */
-void nativeDestroyDisplay(EGLNativeDisplayType nativeDisplay);
-
-/**
- *  Create a native window
- *
- *  @param nativeDisplay                Native display handle
- *  @param dpy                          EGL display handle
- *  @param config                       Configuration to be used with the window
- *  @param title                        Window title
- *  @param width                        Window width in pixels
- *  @param height                       Window height in pixels
- *  @param nativeWindow                 Output: new window handle
- */
-EGLBoolean nativeCreateWindow(EGLNativeDisplayType nativeDisplay, EGLDisplay dpy,
-                              EGLConfig config, const char *title, int width, 
-                              int height, EGLNativeWindowType *nativeWindow);
-
-/**
- *  Destroy a native window
- *
- *  @param nativeDisplay                Native display handle
- *  @param nativeWindow                 Window to destroy
- */
-void nativeDestroyWindow(EGLNativeDisplayType nativeDisplay, EGLNativeWindowType nativeWindow);
-
-/**
- *  Create a native pixmap
- *
- *  @param nativeDisplay                Native display handle
- *  @param dpy                          EGL display handle
- *  @param config                       Configuration to be used with the pixmap
- *  @param width                        Pixmap width in pixels
- *  @param height                       Pixmap height in pixels
- *  @param nativPixmap                  Output: new pixmap handle
- */
-EGLBoolean nativeCreatePixmap(EGLNativeDisplayType nativeDisplay, 
-                              EGLDisplay dpy, EGLConfig config, 
-                              int width, int height, EGLNativePixmapType *nativePixmap);
-
-/**
- *  Destroy a native pixmap
- */
-void nativeDestroyPixmap(EGLNativeDisplayType nativeDisplay, EGLNativePixmapType nativePixmap);
-
-#if defined(__cplusplus)
-}
-#endif