#include <string.h>
#include "eglconfig.h"
#include "eglcontext.h"
+#include "egldefines.h"
#include "egldisplay.h"
#include "egldriver.h"
#include "eglglobals.h"
/* XXX to do */
#endif
+
const char *DefaultDriverName = ":0";
const char *SysFS = "/sys/class";
strcat(drv->Extensions.String, "EGL_MESA_screen_surface ");
if (drv->Extensions.MESA_copy_context)
strcat(drv->Extensions.String, "EGL_MESA_copy_context ");
- assert(strlen(drv->Extensions.String) < MAX_EXTENSIONS_LEN);
+ assert(strlen(drv->Extensions.String) < _EGL_MAX_EXTENSIONS_LEN);
}
(void) dpy;
switch (name) {
case EGL_VENDOR:
- return "Mesa Project";
+ return _EGL_VENDOR_STRING;
case EGL_VERSION:
- return "1.0";
+ return _EGL_VERSION_STRING;
case EGL_EXTENSIONS:
_eglUpdateExtensionsString(drv);
return drv->Extensions.String;
#include "egltypedefs.h"
#include "eglapi.h"
-
-/* should probably use a dynamic-length string, but this will do */
-#define MAX_EXTENSIONS_LEN 1000
+#include "egldefines.h"
/**
EGLBoolean MESA_screen_surface;
EGLBoolean MESA_copy_context;
- char String[MAX_EXTENSIONS_LEN];
+ char String[_EGL_MAX_EXTENSIONS_LEN];
};