1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-17 20:48:46 +00:00

wlbuf_pool.h: add headers for forward declarations

This was previously implicitly included by the order of headers in
vo_dmabuf_wayland.c, but it is better to make it an explicit and reorder
the headers properly.
This commit is contained in:
LaserEyess 2022-11-16 14:44:12 -05:00 committed by Dudemanguy
parent 04f765da6f
commit 303178e645
2 changed files with 4 additions and 1 deletions

View File

@ -40,9 +40,9 @@
#endif #endif
#include "present_sync.h" #include "present_sync.h"
#include "wayland_common.h" #include "wayland_common.h"
#include "wlbuf_pool.h"
#include "generated/wayland/linux-dmabuf-unstable-v1.h" #include "generated/wayland/linux-dmabuf-unstable-v1.h"
#include "generated/wayland/viewporter.h" #include "generated/wayland/viewporter.h"
#include "wlbuf_pool.h"
struct priv { struct priv {
struct mp_log *log; struct mp_log *log;

View File

@ -15,6 +15,9 @@
* License along with mpv. If not, see <http://www.gnu.org/licenses/>. * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "wayland_common.h"
#include "generated/wayland/linux-dmabuf-unstable-v1.h"
struct wlbuf_pool_entry; struct wlbuf_pool_entry;
typedef uintptr_t (*wlbuf_pool_key_provider)(struct mp_image *src); typedef uintptr_t (*wlbuf_pool_key_provider)(struct mp_image *src);