mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
11543a229a
... and plumb the color state through the downloading machinery, where no matter what path it takes it ends up in gdk_memory_convert_color_state() or gdk_memory_convert(). The 2nd of those has been expanded to optionally do colorstate conversion when the 2 colorstates are different.
88 lines
3.9 KiB
C
88 lines
3.9 KiB
C
#pragma once
|
|
|
|
#include "gdktexture.h"
|
|
|
|
#include "gdkenums.h"
|
|
#include "gdkmemoryformatprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef struct _GdkTextureChain GdkTextureChain;
|
|
|
|
struct _GdkTextureChain
|
|
{
|
|
gatomicrefcount ref_count;
|
|
GMutex lock;
|
|
};
|
|
|
|
#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))
|
|
|
|
struct _GdkTexture
|
|
{
|
|
GObject parent_instance;
|
|
|
|
GdkMemoryFormat format;
|
|
int width;
|
|
int height;
|
|
GdkColorState *color_state;
|
|
|
|
gpointer render_key;
|
|
gpointer render_data;
|
|
GDestroyNotify render_notify;
|
|
|
|
/* for diffing swapchain-like textures.
|
|
* Textures in the same chain are connected in a double linked list which is
|
|
* protected using the chain's shared mutex.
|
|
*/
|
|
GdkTextureChain *chain; /* lazy, atomic, shared by all chain links */
|
|
GdkTexture *next_texture; /* no reference, guarded by chain lock */
|
|
GdkTexture *previous_texture; /* no reference, guarded by chain lock */
|
|
cairo_region_t *diff_to_previous; /* guarded by chain lock */
|
|
};
|
|
|
|
struct _GdkTextureClass {
|
|
GObjectClass parent_class;
|
|
|
|
/* mandatory: Download in the given format into data */
|
|
void (* download) (GdkTexture *texture,
|
|
GdkMemoryFormat format,
|
|
GdkColorState *color_state,
|
|
guchar *data,
|
|
gsize stride);
|
|
};
|
|
|
|
gboolean gdk_texture_can_load (GBytes *bytes);
|
|
|
|
GdkTexture * gdk_texture_new_for_surface (cairo_surface_t *surface);
|
|
cairo_surface_t * gdk_texture_download_surface (GdkTexture *texture,
|
|
GdkColorState *color_state);
|
|
|
|
GdkMemoryDepth gdk_texture_get_depth (GdkTexture *self);
|
|
|
|
void gdk_texture_do_download (GdkTexture *texture,
|
|
GdkMemoryFormat format,
|
|
GdkColorState *color_state,
|
|
guchar *data,
|
|
gsize stride);
|
|
void gdk_texture_diff (GdkTexture *self,
|
|
GdkTexture *other,
|
|
cairo_region_t *region);
|
|
|
|
void gdk_texture_set_diff (GdkTexture *self,
|
|
GdkTexture *previous,
|
|
cairo_region_t *diff);
|
|
|
|
gboolean gdk_texture_set_render_data (GdkTexture *self,
|
|
gpointer key,
|
|
gpointer data,
|
|
GDestroyNotify notify);
|
|
void gdk_texture_steal_render_data (GdkTexture *self);
|
|
void gdk_texture_clear_render_data (GdkTexture *self);
|
|
gpointer gdk_texture_get_render_data (GdkTexture *self,
|
|
gpointer key);
|
|
|
|
G_END_DECLS
|
|
|