summaryrefslogtreecommitdiff
path: root/src/egl/main/egldisplay.h
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2010-01-24 20:30:04 +0800
committerChia-I Wu <olvaffe@gmail.com>2010-01-24 20:38:15 +0800
commit7abf42626fe8552cf898652134f3767e591614ab (patch)
tree3789e1b655e73cdc7cec84ba1954844e49af5ab3 /src/egl/main/egldisplay.h
parentb4d2c97a2d2cce92fa638ff74bef7dedf593fd1f (diff)
egl: Add _EGLResource and _EGLResourceType.
Resources are objects managed by a display. They can be linked to or unlinked from a display. It is also possible to check if a resource is valid.
Diffstat (limited to 'src/egl/main/egldisplay.h')
-rw-r--r--src/egl/main/egldisplay.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/egl/main/egldisplay.h b/src/egl/main/egldisplay.h
index 77458cb38d6..c1069d7c59a 100644
--- a/src/egl/main/egldisplay.h
+++ b/src/egl/main/egldisplay.h
@@ -5,6 +5,24 @@
#include "egldefines.h"
+enum _egl_resource_type {
+ _EGL_RESOURCE_CONTEXT,
+ _EGL_RESOURCE_SURFACE,
+
+ _EGL_NUM_RESOURCES
+};
+
+
+/**
+ * A resource of a display.
+ */
+struct _egl_resource
+{
+ _EGLDisplay *Display;
+ _EGLResource *Next;
+};
+
+
/**
* Optional EGL extensions info.
*/
@@ -48,6 +66,8 @@ struct _egl_display
/* lists of linked contexts and surface */
_EGLContext *ContextList;
_EGLSurface *SurfaceList;
+
+ _EGLResource *ResourceLists[_EGL_NUM_RESOURCES];
};
@@ -86,6 +106,10 @@ extern EGLBoolean
_eglCheckDisplayHandle(EGLDisplay dpy);
+extern EGLBoolean
+_eglCheckResource(_EGLResource *res, _EGLResourceType type, _EGLDisplay *dpy);
+
+
#else /* !_EGL_SKIP_HANDLE_CHECK */
/* Only do a quick check. This is NOT standard compliant. */
@@ -97,6 +121,13 @@ _eglCheckDisplayHandle(EGLDisplay dpy)
}
+static INLINE EGLBoolean
+_eglCheckResource(_EGLResource *res, _EGLResourceType type, _EGLDisplay *dpy)
+{
+ return (res->Display == dpy);
+}
+
+
#endif /* _EGL_SKIP_HANDLE_CHECK */
@@ -134,6 +165,24 @@ _eglIsDisplayLinked(_EGLDisplay *dpy)
}
+extern void
+_eglLinkResource(_EGLResource *res, _EGLResourceType type, _EGLDisplay *dpy);
+
+
+extern void
+_eglUnlinkResource(_EGLResource *res, _EGLResourceType type);
+
+
+/**
+ * Return true if the resource is linked.
+ */
+static INLINE EGLBoolean
+_eglIsResourceLinked(_EGLResource *res)
+{
+ return (res->Display != NULL);
+}
+
+
/**
* Cast an unsigned int to a pointer.
*/