mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
ffdc8c8f60
Nobody is using gsk_gpu_download_png_op, and we are going to refactor the download op code.
18 lines
876 B
C
18 lines
876 B
C
#pragma once
|
|
|
|
#include "gskgpuopprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef void (* GskGpuDownloadFunc) (gpointer user_data,
|
|
GdkTexture *texture);
|
|
|
|
void gsk_gpu_download_op (GskGpuFrame *frame,
|
|
GskGpuImage *image,
|
|
gboolean allow_dmabuf,
|
|
GskGpuDownloadFunc func,
|
|
gpointer user_data);
|
|
|
|
G_END_DECLS
|
|
|