gl: Fix typo s/bool/cairo_bool_t/

One quickly gets used to having stdbool.h available.
This commit is contained in:
Chris Wilson 2013-03-08 14:25:26 +00:00
parent 524e6fd3e8
commit f50ced2e7b

View file

@ -277,7 +277,7 @@ cairo_gl_surface_create_for_egl (cairo_device_t *device,
return &surface->base.base;
}
static bool is_egl_device (cairo_device_t *device)
static cairo_bool_t is_egl_device (cairo_device_t *device)
{
return (device->backend != NULL &&
device->backend->type == CAIRO_DEVICE_TYPE_GL);