summaryrefslogtreecommitdiff
path: root/src/egl
diff options
context:
space:
mode:
authorEric Engestrom <eric@engestrom.ch>2020-08-03 16:52:03 +0200
committerMarge Bot <eric+marge@anholt.net>2020-08-16 13:49:18 +0000
commit735b35e34a8bf733748e89fe45fbed058ebf0739 (patch)
tree19d9e6999e5f6068e17a43299db121de07145fc8 /src/egl
parentc74628fd1e5d9af756d56b6026e72203523e6df6 (diff)
egl: drop unused ${drv}_driver()
Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6241>
Diffstat (limited to 'src/egl')
-rw-r--r--src/egl/main/egldriver.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h
index d4fa5aab145..150e3556c04 100644
--- a/src/egl/main/egldriver.h
+++ b/src/egl/main/egldriver.h
@@ -55,14 +55,13 @@ extern "C" {
/**
- * Define the driver typecast functions for _EGLDriver, _EGLDisplay,
+ * Define the driver typecast functions for _EGLDisplay,
* _EGLContext, _EGLSurface, and _EGLConfig.
*
* Note that this macro defines several functions and should not be ended with
* a semicolon when used.
*/
#define _EGL_DRIVER_STANDARD_TYPECASTS(drvname) \
- _EGL_DRIVER_TYPECAST(drvname ## _driver, _EGLDriver, obj) \
/* note that this is not a direct cast */ \
_EGL_DRIVER_TYPECAST(drvname ## _display, _EGLDisplay, obj->DriverData) \
_EGL_DRIVER_TYPECAST(drvname ## _context, _EGLContext, obj) \