mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 04:30:10 +01:00
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: 7552fcb7b9 "egl: add base EGL_EXT_device_base implementation"
Reported-by: Timo Aaltonen <tjaalton@debian.org>
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Acked-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
e37ea1e0d3
commit
bcc4bfc8e8
2 changed files with 0 additions and 15 deletions
|
|
@ -202,18 +202,6 @@ _eglDeviceSupports(_EGLDevice *dev, _EGLDeviceExtension ext)
|
|||
};
|
||||
}
|
||||
|
||||
/* Ideally we'll have an extension which passes the render node,
|
||||
* instead of the card one + magic.
|
||||
*
|
||||
* Then we can move this in _eglQueryDeviceStringEXT below. Until then
|
||||
* keep it separate.
|
||||
*/
|
||||
const char *
|
||||
_eglGetDRMDeviceRenderNode(_EGLDevice *dev)
|
||||
{
|
||||
return dev->device->nodes[DRM_NODE_RENDER];
|
||||
}
|
||||
|
||||
EGLBoolean
|
||||
_eglQueryDeviceAttribEXT(_EGLDevice *dev, EGLint attribute,
|
||||
EGLAttrib *value)
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue