mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
6ed4eece04
When using GSK_DEBUG=verbose, print the clip mode used in the shader. Use cute little unicode indicators to not overload the debug output.
38 lines
3.0 KiB
C
38 lines
3.0 KiB
C
#pragma once
|
|
|
|
#include "gskgputypesprivate.h"
|
|
|
|
#include "gskroundedrect.h"
|
|
|
|
#include <cairo.h>
|
|
#include <graphene.h>
|
|
|
|
void gsk_gpu_print_indent (GString *string,
|
|
guint indent);
|
|
void gsk_gpu_print_op (GString *string,
|
|
guint indent,
|
|
const char *op_name);
|
|
|
|
void gsk_gpu_print_newline (GString *string);
|
|
|
|
void gsk_gpu_print_string (GString *string,
|
|
const char *s);
|
|
void gsk_gpu_print_shader_info (GString *string,
|
|
GskGpuShaderClip clip);
|
|
void gsk_gpu_print_enum (GString *string,
|
|
GType type,
|
|
int value);
|
|
void gsk_gpu_print_rect (GString *string,
|
|
const float rect[4]);
|
|
void gsk_gpu_print_int_rect (GString *string,
|
|
const cairo_rectangle_int_t *rect);
|
|
void gsk_gpu_print_rounded_rect (GString *string,
|
|
const float rect[12]);
|
|
void gsk_gpu_print_rgba (GString *string,
|
|
const float rgba[4]);
|
|
void gsk_gpu_print_image (GString *string,
|
|
GskGpuImage *image);
|
|
void gsk_gpu_print_image_descriptor (GString *string,
|
|
GskGpuDescriptors *desc,
|
|
guint32 descriptor);
|