summaryrefslogtreecommitdiff
path: root/src/egl/main/egldriver.c
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@intel.com>2019-06-22 21:55:03 +0100
committerEric Engestrom <eric.engestrom@intel.com>2019-06-22 21:59:06 +0100
commit188dbb1679b391abe6322e5b3e74bed2522756e2 (patch)
tree44a460ba622494bcfd5d730f2bfb598e54b4f04b /src/egl/main/egldriver.c
parentcc4b68a80193e2a132cb62309292984a9428f2bb (diff)
downloadmesa-188dbb1679b391abe6322e5b3e74bed2522756e2.tar.gz
Revert "egl: drop empty eglfallbacks.c" and "egl: move fallback calls to eglapi.c"
This reverts commits cc4b68a80193e2a132cb62309292984a9428f2bb and b27fb3eacab906ec06cd61b7d01e3425c3b3cbfc. These caused a bunch of EGLSync tests to crash when they were previously failing. I have a hunch the tests are doing something wrong, like using extensions without checking for they support, but until the issue is investigated I'm just reverting these commits. Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Diffstat (limited to 'src/egl/main/egldriver.c')
-rw-r--r--src/egl/main/egldriver.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c
index e719b19a63f..4dc46b35e95 100644
--- a/src/egl/main/egldriver.c
+++ b/src/egl/main/egldriver.c
@@ -58,6 +58,7 @@ _eglGetDriver(void)
_eglDriver = calloc(1, sizeof(*_eglDriver));
if (!_eglDriver)
return NULL;
+ _eglInitDriverFallbacks(_eglDriver);
_eglInitDriver(_eglDriver);
}