diff options
author | Eric Engestrom <[email protected]> | 2019-02-27 15:26:08 +0000 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-03-05 12:03:05 -0800 |
commit | d7bea557d369664d67bcbdf9492fd84c8c96cd06 (patch) | |
tree | b30b20a6a05eb0adb6b40bfaa454baa4493872d3 /src/egl/main/egldevice.h | |
parent | 503746b131e8d17c6c498b6d9dba5159613844c1 (diff) |
egl: fix libdrm-less builds
This function was never used, and isn't properly guarded by HAVE_LIBDRM,
breaking the build on systems that don't have libdrm.
Let's just remove it.
Fixes: 7552fcb7b9b98392e6a8 "egl: add base EGL_EXT_device_base implementation"
Reported-by: Timo Aaltonen <[email protected]>
Signed-off-by: Eric Engestrom <[email protected]>
Acked-by: Emil Velikov <[email protected]>
(cherry picked from commit bcc4bfc8e80da5dc4c6ee44f791f2112dac208d1)
Diffstat (limited to 'src/egl/main/egldevice.h')
-rw-r--r-- | src/egl/main/egldevice.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/egl/main/egldevice.h b/src/egl/main/egldevice.h index 83a47d5eacc..883f96f8e30 100644 --- a/src/egl/main/egldevice.h +++ b/src/egl/main/egldevice.h @@ -68,9 +68,6 @@ typedef enum _egl_device_extension _EGLDeviceExtension; EGLBoolean _eglDeviceSupports(_EGLDevice *dev, _EGLDeviceExtension ext); -const char * -_eglGetDRMDeviceRenderNode(_EGLDevice *dev); - EGLBoolean _eglQueryDeviceAttribEXT(_EGLDevice *dev, EGLint attribute, EGLAttrib *value); |