mirror of
https://salsa.debian.org/xorg-team/lib/pixman
synced 2025-09-01 18:46:11 +00:00

This separates the test suite from the random gtk+ using test programs. "demos" is somewhat misleading because the programs there are not particularly exciting (with the possible exception of composite-test which shows off all the compositing operators).
14 lines
354 B
C
14 lines
354 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <glib.h>
|
|
#include <gtk/gtk.h>
|
|
#include "pixman.h"
|
|
|
|
void show_image (pixman_image_t *image);
|
|
|
|
GdkPixbuf *pixbuf_from_argb32 (uint32_t *bits,
|
|
gboolean has_alpha,
|
|
int width,
|
|
int height,
|
|
int stride);
|