mesa/src/egl/main/egldisplay.c

107 lines
2.2 KiB
C
Raw Normal View History

/**
* Functions related to EGLDisplay.
*/
#include <assert.h>
2005-04-22 22:09:39 +01:00
#include <stdlib.h>
#include <string.h>
#include "eglcontext.h"
#include "egldisplay.h"
#include "egldriver.h"
2005-04-22 22:09:39 +01:00
#include "eglglobals.h"
#include "eglhash.h"
2008-05-28 19:56:36 +01:00
#include "eglstring.h"
2005-04-22 22:09:39 +01:00
/**
* Allocate a new _EGLDisplay object for the given nativeDisplay handle.
* We'll also try to determine the device driver name at this time.
2008-05-28 19:56:36 +01:00
*
* Note that nativeDisplay may be an X Display ptr, or a string.
2005-04-22 22:09:39 +01:00
*/
_EGLDisplay *
_eglNewDisplay(NativeDisplayType nativeDisplay)
2005-04-22 22:09:39 +01:00
{
2005-12-23 08:17:44 +00:00
_EGLDisplay *dpy = (_EGLDisplay *) calloc(1, sizeof(_EGLDisplay));
2005-04-22 22:09:39 +01:00
if (dpy) {
EGLuint key = _eglHashGenKey(_eglGlobal.Displays);
dpy->Handle = (EGLDisplay) key;
_eglHashInsert(_eglGlobal.Displays, key, dpy);
dpy->NativeDisplay = nativeDisplay;
#if defined(_EGL_PLATFORM_X)
dpy->Xdpy = (Display *) nativeDisplay;
#endif
dpy->DriverName = _eglChooseDriver(dpy);
if (!dpy->DriverName) {
free(dpy);
return NULL;
}
2005-04-22 22:09:39 +01:00
}
return dpy;
}
/**
* Return the public handle for an internal _EGLDisplay.
* This is the inverse of _eglLookupDisplay().
*/
EGLDisplay
_eglGetDisplayHandle(_EGLDisplay *display)
{
if (display)
return display->Handle;
else
return EGL_NO_DISPLAY;
}
2005-04-22 22:09:39 +01:00
/**
* Return the _EGLDisplay object that corresponds to the given public/
* opaque display handle.
* This is the inverse of _eglGetDisplayHandle().
2005-04-22 22:09:39 +01:00
*/
_EGLDisplay *
_eglLookupDisplay(EGLDisplay dpy)
{
EGLuint key = (EGLuint) dpy;
_EGLDisplay *d = (_EGLDisplay *) _eglHashLookup(_eglGlobal.Displays, key);
2005-04-22 22:09:39 +01:00
return d;
}
void
_eglSaveDisplay(_EGLDisplay *dpy)
{
EGLuint key = _eglHashGenKey(_eglGlobal.Displays);
assert(dpy);
assert(!dpy->Handle);
dpy->Handle = (EGLDisplay) key;
assert(dpy->Handle);
_eglHashInsert(_eglGlobal.Displays, key, dpy);
}
2005-04-22 22:09:39 +01:00
_EGLDisplay *
_eglGetCurrentDisplay(void)
{
_EGLContext *ctx = _eglGetCurrentContext();
if (ctx)
return ctx->Display;
else
return NULL;
}
void
_eglCleanupDisplay(_EGLDisplay *disp)
2005-04-22 22:09:39 +01:00
{
/* XXX incomplete */
free(disp->Configs);
free((void *) disp->DriverName);
/* driver deletes _EGLDisplay */
2005-04-22 22:09:39 +01:00
}