mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 05:50:11 +01:00
egl: move extension driver functions after core functions
Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Frank Binns <frank.binns@imgtec.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6130>
This commit is contained in:
parent
12c941808f
commit
cf663d0d11
1 changed files with 3 additions and 2 deletions
|
|
@ -86,8 +86,6 @@ struct _egl_driver
|
|||
/* driver funcs */
|
||||
EGLBoolean (*Initialize)(_EGLDisplay *disp);
|
||||
EGLBoolean (*Terminate)(_EGLDisplay *disp);
|
||||
const char *(*QueryDriverName)(_EGLDisplay *disp);
|
||||
char *(*QueryDriverConfig)(_EGLDisplay *disp);
|
||||
|
||||
/* context funcs */
|
||||
_EGLContext *(*CreateContext)(_EGLDisplay *disp, _EGLConfig *config,
|
||||
|
|
@ -175,6 +173,9 @@ struct _egl_driver
|
|||
EGLint *fds, EGLint *strides,
|
||||
EGLint *offsets);
|
||||
|
||||
const char *(*QueryDriverName)(_EGLDisplay *disp);
|
||||
char *(*QueryDriverConfig)(_EGLDisplay *disp);
|
||||
|
||||
int (*GLInteropQueryDeviceInfo)(_EGLDisplay *disp, _EGLContext *ctx,
|
||||
struct mesa_glinterop_device_info *out);
|
||||
int (*GLInteropExportObject)(_EGLDisplay *disp, _EGLContext *ctx,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue