2017-11-02 20:39:00 +00:00
|
|
|
#ifndef __GDK_TEXTURE_PRIVATE_H__
|
|
|
|
#define __GDK_TEXTURE_PRIVATE_H__
|
2016-11-07 16:59:38 +00:00
|
|
|
|
2017-11-02 20:39:00 +00:00
|
|
|
#include "gdktexture.h"
|
2016-11-07 16:59:38 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2017-11-02 20:39:00 +00:00
|
|
|
#define GDK_TEXTURE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_TEXTURE, GdkTextureClass))
|
|
|
|
#define GDK_IS_TEXTURE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_TEXTURE))
|
|
|
|
#define GDK_TEXTURE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_TEXTURE, GdkTextureClass))
|
2016-11-07 16:59:38 +00:00
|
|
|
|
2017-11-02 20:39:00 +00:00
|
|
|
struct _GdkTexture
|
2016-11-07 16:59:38 +00:00
|
|
|
{
|
2017-01-01 12:40:13 +00:00
|
|
|
GObject parent_instance;
|
2016-11-07 16:59:38 +00:00
|
|
|
|
2021-10-07 00:41:30 +00:00
|
|
|
GdkMemoryFormat format;
|
2016-11-07 16:59:38 +00:00
|
|
|
int width;
|
|
|
|
int height;
|
2016-11-16 04:37:20 +00:00
|
|
|
|
|
|
|
gpointer render_key;
|
|
|
|
gpointer render_data;
|
|
|
|
GDestroyNotify render_notify;
|
2016-11-07 16:59:38 +00:00
|
|
|
};
|
|
|
|
|
2017-11-02 20:39:00 +00:00
|
|
|
struct _GdkTextureClass {
|
2017-01-01 12:40:13 +00:00
|
|
|
GObjectClass parent_class;
|
2016-11-16 03:14:32 +00:00
|
|
|
|
2021-10-07 04:19:41 +00:00
|
|
|
/* mandatory: Download in the given format into data */
|
2017-11-02 20:39:00 +00:00
|
|
|
void (* download) (GdkTexture *texture,
|
2021-10-07 04:19:41 +00:00
|
|
|
GdkMemoryFormat format,
|
2016-12-21 21:11:52 +00:00
|
|
|
guchar *data,
|
|
|
|
gsize stride);
|
2016-11-16 03:14:32 +00:00
|
|
|
};
|
|
|
|
|
2021-09-14 15:40:09 +00:00
|
|
|
gboolean gdk_texture_can_load (GBytes *bytes);
|
|
|
|
|
2017-11-02 20:39:00 +00:00
|
|
|
GdkTexture * gdk_texture_new_for_surface (cairo_surface_t *surface);
|
|
|
|
cairo_surface_t * gdk_texture_download_surface (GdkTexture *texture);
|
2016-11-07 16:59:38 +00:00
|
|
|
|
2021-10-07 04:19:41 +00:00
|
|
|
void gdk_texture_do_download (GdkTexture *texture,
|
|
|
|
GdkMemoryFormat format,
|
|
|
|
guchar *data,
|
|
|
|
gsize stride);
|
2021-10-07 00:41:30 +00:00
|
|
|
GdkMemoryFormat gdk_texture_get_format (GdkTexture *self);
|
2017-11-02 20:39:00 +00:00
|
|
|
gboolean gdk_texture_set_render_data (GdkTexture *self,
|
2016-11-16 04:37:20 +00:00
|
|
|
gpointer key,
|
|
|
|
gpointer data,
|
|
|
|
GDestroyNotify notify);
|
2017-11-02 20:39:00 +00:00
|
|
|
void gdk_texture_clear_render_data (GdkTexture *self);
|
|
|
|
gpointer gdk_texture_get_render_data (GdkTexture *self,
|
2016-11-16 04:37:20 +00:00
|
|
|
gpointer key);
|
|
|
|
|
2016-11-07 16:59:38 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2017-11-02 20:39:00 +00:00
|
|
|
#endif /* __GDK_TEXTURE_PRIVATE_H__ */
|