mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
7afdd3fdb5
GSK is conceptually split into two scene graphs: * a simple rendering tree of operations * a complex set of logical layers The latter is built on the former, and adds convenience and high level API for application developers. The lower layer, though, is what gets transformed into the rendering pipeline, as it's simple and thus can be transformed into appropriate rendering commands with minimal state changes. The lower layer is also suitable for reuse from more complex higher layers, like the CSS machinery in GTK, without necessarily port those layers to the GSK high level API. This lower layer is based on GskRenderNode instances, which represent the tree of rendering operations; and a GskRenderer instance, which takes the render nodes and submits them (after potentially reordering and transforming them to a more appropriate representation) to the underlying graphic system.
27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
#ifndef __GSK_CAIRO_RENDERER_PRIVATE_H__
|
|
#define __GSK_CAIRO_RENDERER_PRIVATE_H__
|
|
|
|
#include <cairo.h>
|
|
#include <gsk/gskrenderer.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GSK_TYPE_CAIRO_RENDERER (gsk_cairo_renderer_get_type ())
|
|
|
|
#define GSK_CAIRO_RENDERER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GSK_TYPE_CAIRO_RENDERER, GskCairoRenderer))
|
|
#define GSK_IS_CAIRO_RENDERER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GSK_TYPE_CAIRO_RENDERER))
|
|
#define GSK_CAIRO_RENDERER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GSK_TYPE_CAIRO_RENDERER, GskCairoRendererClass))
|
|
#define GSK_IS_CAIRO_RENDERER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GSK_TYPE_CAIRO_RENDERER))
|
|
#define GSK_CAIRO_RENDERER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GSK_TYPE_CAIRO_RENDERER, GskCairoRendererClass))
|
|
|
|
typedef struct _GskCairoRenderer GskCairoRenderer;
|
|
typedef struct _GskCairoRendererClass GskCairoRendererClass;
|
|
|
|
GType gsk_cairo_renderer_get_type (void) G_GNUC_CONST;
|
|
|
|
GskRenderer *gsk_cairo_renderer_new (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GSK_CAIRO_RENDERER_PRIVATE_H__ */
|