summaryrefslogtreecommitdiff
path: root/tests/test-pangocairo-threads.c
blob: 29c6aa5762d99e41e5583d11c02c117ce9177495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <stdlib.h>
#include <pango/pango.h>
#include <pango/pangocairo.h>

const char *text = "The quick brown fox jumped over the lazy dog!";
int num_iters = 100;

static gpointer
thread_func (gpointer data)
{
  int num = GPOINTER_TO_INT (data);
  int i;
  char *filename;

  cairo_surface_t *surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, 500, 300);
  cairo_t *cr = cairo_create (surface);
  PangoLayout *layout = pango_cairo_create_layout (cr);

  cairo_set_source_rgb (cr, 1, 1, 1);
  cairo_paint (cr);
  cairo_set_source_rgb (cr, 0, 0, 0);

  pango_layout_set_text (layout, text, -1);
  pango_layout_set_width (layout, 500 * PANGO_SCALE);

  for (i = 0; i < num_iters; i++)
    {
      /* force a relayout */
      PangoWrapMode wrap = pango_layout_get_wrap (layout);
      wrap = wrap == PANGO_WRAP_WORD ? PANGO_WRAP_CHAR : PANGO_WRAP_WORD;
      pango_layout_set_wrap (layout, wrap);

      pango_cairo_show_layout (cr, layout);
    }

  filename = g_strdup_printf ("%d.png", num);
  cairo_surface_write_to_png (surface, filename);
  g_free (filename);

  return 0;
}

static void
join_thread (gpointer thread, gpointer self)
{
  if (thread != self)
    g_thread_join (thread);
}


int
main (int argc, char **argv)
{
  int num_threads = 2;
  int i;

  if (argc > 1)
    num_threads = atoi (argv[1]);
  if (argc > 2)
    num_iters = atoi (argv[2]);

  g_type_init ();
  g_thread_init (NULL);

  /* force pango module initializations */
/*  thread_func (GINT_TO_POINTER (0)); */

  for (i = 0; i < num_threads; i++)
    g_thread_create (thread_func, GINT_TO_POINTER (i+1), TRUE, NULL);

  g_thread_foreach (join_thread, g_thread_self ());

  return 0;
}