diff options
author | Emil Velikov <[email protected]> | 2017-11-09 19:04:25 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-11-16 14:03:08 +0000 |
commit | 40a01c9a0ef2c8110d79c284976ef34c0f73be92 (patch) | |
tree | c6eeabfcb59f4fc5ceceb6b7f19640d3434a4d86 /src/egl/drivers/dri2/egl_dri2.h | |
parent | 938fcab08b863603834b37afaae6a253e670df24 (diff) |
egl/drm: move teardown code to the platform file
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/egl/drivers/dri2/egl_dri2.h')
-rw-r--r-- | src/egl/drivers/dri2/egl_dri2.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/egl/drivers/dri2/egl_dri2.h b/src/egl/drivers/dri2/egl_dri2.h index ef5a458f5dd..9222fa122b2 100644 --- a/src/egl/drivers/dri2/egl_dri2.h +++ b/src/egl/drivers/dri2/egl_dri2.h @@ -418,12 +418,16 @@ dri2_teardown_x11(struct dri2_egl_display *dri2_dpy) {} #ifdef HAVE_DRM_PLATFORM EGLBoolean dri2_initialize_drm(_EGLDriver *drv, _EGLDisplay *disp); +void +dri2_teardown_drm(struct dri2_egl_display *dri2_dpy); #else static inline EGLBoolean dri2_initialize_drm(_EGLDriver *drv, _EGLDisplay *disp) { return _eglError(EGL_NOT_INITIALIZED, "GBM/DRM platform not built"); } +static inline void +dri2_teardown_drm(struct dri2_egl_display *dri2_dpy) {} #endif #ifdef HAVE_WAYLAND_PLATFORM |