From: Eric Engestrom Date: Mon, 3 Aug 2020 14:52:03 +0000 (+0200) Subject: egl: drop unused ${drv}_driver() X-Git-Tag: upstream/21.0.0~6499 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=735b35e34a8bf733748e89fe45fbed058ebf0739;p=platform%2Fupstream%2Fmesa.git egl: drop unused ${drv}_driver() Signed-off-by: Eric Engestrom Reviewed-by: Marek Olšák Part-of: --- diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h index d4fa5aa..150e355 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) \