From 38fcaf3fa8ecd87d74646caedcc0fc5b2607cd08 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ingo=20B=C3=BCrk?= Date: Sat, 7 Nov 2015 14:28:45 -0500 Subject: [PATCH] Rename I3BAR_CAIRO to CAIRO_SUPPORT. --- common.mk | 2 +- i3bar/include/draw_util.h | 6 +++--- i3bar/src/draw_util.c | 18 +++++++++--------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/common.mk b/common.mk index 60be830e..eb324f23 100644 --- a/common.mk +++ b/common.mk @@ -142,7 +142,7 @@ PANGO_CFLAGS := $(call cflags_for_lib, cairo) PANGO_CFLAGS += $(call cflags_for_lib, pangocairo) I3_CPPFLAGS += -DPANGO_SUPPORT=1 ifeq ($(shell $(PKG_CONFIG) --atleast-version=1.14.4 cairo 2>/dev/null && echo 1),1) -I3_CPPFLAGS += -DI3BAR_CAIRO=1 +I3_CPPFLAGS += -DCAIRO_SUPPORT=1 endif PANGO_LIBS := $(call ldflags_for_lib, cairo) PANGO_LIBS += $(call ldflags_for_lib, pangocairo) diff --git a/i3bar/include/draw_util.h b/i3bar/include/draw_util.h index 9bac72ca..f2e12ec5 100644 --- a/i3bar/include/draw_util.h +++ b/i3bar/include/draw_util.h @@ -8,11 +8,11 @@ */ #pragma once -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT #include #endif -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT /* We need to flush cairo surfaces twice to avoid an assertion bug. See #1989 * and https://bugs.freedesktop.org/show_bug.cgi?id=92455. */ #define CAIRO_SURFACE_FLUSH(surface) \ @@ -44,7 +44,7 @@ typedef struct surface_t { int width; int height; -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT /* A cairo surface representing the drawable. */ cairo_surface_t *surface; diff --git a/i3bar/src/draw_util.c b/i3bar/src/draw_util.c index e1facf39..86435351 100644 --- a/i3bar/src/draw_util.c +++ b/i3bar/src/draw_util.c @@ -11,7 +11,7 @@ #include #include #include -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT #include #endif @@ -38,7 +38,7 @@ void draw_util_surface_init(surface_t *surface, xcb_drawable_t drawable, int wid if (xcb_request_failed(gc_cookie, "Could not create graphical context")) exit(EXIT_FAILURE); -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT surface->surface = cairo_xcb_surface_create(xcb_connection, surface->id, visual_type, width, height); surface->cr = cairo_create(surface->surface); #endif @@ -50,7 +50,7 @@ void draw_util_surface_init(surface_t *surface, xcb_drawable_t drawable, int wid */ void draw_util_surface_free(surface_t *surface) { xcb_free_gc(xcb_connection, surface->gc); -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT cairo_surface_destroy(surface->surface); cairo_destroy(surface->cr); #endif @@ -79,7 +79,7 @@ color_t draw_util_hex_to_color(const char *color) { * */ static void draw_util_set_source_color(surface_t *surface, color_t color) { -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT cairo_set_source_rgb(surface->cr, color.red, color.green, color.blue); #else uint32_t colorpixel = color.colorpixel; @@ -95,7 +95,7 @@ static void draw_util_set_source_color(surface_t *surface, color_t color) { * */ void draw_util_text(i3String *text, surface_t *surface, color_t fg_color, color_t bg_color, int x, int y, int max_width) { -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT /* Flush any changes before we draw the text as this might use XCB directly. */ CAIRO_SURFACE_FLUSH(surface->surface); #endif @@ -103,7 +103,7 @@ void draw_util_text(i3String *text, surface_t *surface, color_t fg_color, color_ set_font_colors(surface->gc, fg_color.colorpixel, bg_color.colorpixel); draw_text(text, surface->id, surface->gc, visual_type, x, y, max_width); -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT /* Notify cairo that we (possibly) used another way to draw on the surface. */ cairo_surface_mark_dirty(surface->surface); #endif @@ -116,7 +116,7 @@ void draw_util_text(i3String *text, surface_t *surface, color_t fg_color, color_ * */ void draw_util_rectangle(surface_t *surface, color_t color, double x, double y, double w, double h) { -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT cairo_save(surface->cr); /* Using the SOURCE operator will copy both color and alpha information directly @@ -146,7 +146,7 @@ void draw_util_rectangle(surface_t *surface, color_t color, double x, double y, * */ void draw_util_clear_surface(surface_t *surface, color_t color) { -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT cairo_save(surface->cr); /* Using the SOURCE operator will copy both color and alpha information directly @@ -176,7 +176,7 @@ void draw_util_clear_surface(surface_t *surface, color_t color) { */ void draw_util_copy_surface(surface_t *src, surface_t *dest, double src_x, double src_y, double dest_x, double dest_y, double width, double height) { -#ifdef I3BAR_CAIRO +#ifdef CAIRO_SUPPORT cairo_save(dest->cr); /* Using the SOURCE operator will copy both color and alpha information directly -- 2.39.5