summaryrefslogtreecommitdiffstats
path: root/opengl/include
diff options
context:
space:
mode:
authorJonas Yang <joyang@nvidia.com>2011-08-26 20:04:39 +0800
committerMathias Agopian <mathias@google.com>2011-09-13 16:44:22 -0700
commit1b1d73f3ae5013f6c82f6a9b23a1654896e7a64a (patch)
treedbc5953369deffc4b3a8703bff526a36bb390cca /opengl/include
parent1fbe7a8e828fd0fe8339d075da08aad701ab6e98 (diff)
downloadframeworks_base-1b1d73f3ae5013f6c82f6a9b23a1654896e7a64a.zip
frameworks_base-1b1d73f3ae5013f6c82f6a9b23a1654896e7a64a.tar.gz
frameworks_base-1b1d73f3ae5013f6c82f6a9b23a1654896e7a64a.tar.bz2
Add (support for) EGL_NV_system_time extension.
Change-Id: I62bf0fcb5ccdc77c042b425a42054fb3122575b6 Signed-off-by: Mathias Agopian <mathias@google.com>
Diffstat (limited to 'opengl/include')
-rw-r--r--opengl/include/EGL/eglext.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/opengl/include/EGL/eglext.h b/opengl/include/EGL/eglext.h
index 6a199db..a08932a 100644
--- a/opengl/include/EGL/eglext.h
+++ b/opengl/include/EGL/eglext.h
@@ -242,6 +242,20 @@ typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETSWAPRECTANGLEANDROIDPROC) (EGLDisplay
#define EGL_RECORDABLE_ANDROID 0x3142 /* EGLConfig attribute */
#endif
+/* EGL_NV_system_time
+ */
+#ifndef EGL_NV_system_time
+#define EGL_NV_system_time 1
+typedef khronos_int64_t EGLint64NV;
+typedef khronos_uint64_t EGLuint64NV;
+#ifdef EGL_EGLEXT_PROTOTYPES
+EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeFrequencyNV(void);
+EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeNV(void);
+#endif
+typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMEFREQUENCYNVPROC)(void);
+typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMENVPROC)(void);
+#endif
+
#ifdef __cplusplus
}
#endif