mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 09:40:10 +00:00
6059eaf355
Change the xxx_get_downloader() functions to init_dmabuf_xxx(), and make them initialize both xxx_dmabuf_formats and xxx_downloader.
19 lines
821 B
C
19 lines
821 B
C
#pragma once
|
|
|
|
#include "gdkdisplayprivate.h"
|
|
#if defined(HAVE_DMABUF) && defined (HAVE_EGL)
|
|
|
|
#include "gdkdmabufprivate.h"
|
|
|
|
#include <epoxy/egl.h>
|
|
|
|
EGLImage gdk_dmabuf_egl_create_image (GdkDisplay *display,
|
|
int width,
|
|
int height,
|
|
const GdkDmabuf *dmabuf,
|
|
int target);
|
|
|
|
#endif /* HAVE_DMABUF && HAVE_EGL */
|
|
|
|
void gdk_dmabuf_egl_init (GdkDisplay *display);
|