mesa/src/egl/main/egldisplay.c

111 lines
2.3 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;
2008-06-20 21:28:59 +01:00
if (!_eglGlobal.Displays)
return NULL;
return (_EGLDisplay *) _eglHashLookup(_eglGlobal.Displays, key);
2005-04-22 22:09:39 +01:00
}
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);
}
/**
* Free all the data hanging of an _EGLDisplay object, but not
* the object itself.
*/
2005-04-22 22:09:39 +01:00
void
_eglCleanupDisplay(_EGLDisplay *disp)
2005-04-22 22:09:39 +01:00
{
EGLint i;
for (i = 0; i < disp->NumConfigs; i++) {
free(disp->Configs[i]);
}
2005-04-22 22:09:39 +01:00
free(disp->Configs);
disp->Configs = NULL;
/* XXX incomplete */
free((void *) disp->DriverName);
disp->DriverName = NULL;
/* driver deletes the _EGLDisplay object */
2005-04-22 22:09:39 +01:00
}