From ae40f270cfbe4629c041074e2b0c28dfd3f554b8 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Mon, 3 May 2010 12:08:00 +0200 Subject: Remove all mentions of "cairo" from the code The command line option is renamed from "cairo" to "sw", and similarly all filenames and types from Cairo to Sw (and similar). --- server/red_dispatcher.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'server/red_dispatcher.c') diff --git a/server/red_dispatcher.c b/server/red_dispatcher.c index 5b719bd0..b3cf8cd1 100644 --- a/server/red_dispatcher.c +++ b/server/red_dispatcher.c @@ -28,7 +28,7 @@ #include "vd_interface.h" #include "red_worker.h" #include "quic.h" -#include "cairo_canvas.h" +#include "sw_canvas.h" #include "gl_canvas.h" #include "reds.h" #include "red_dispatcher.h" @@ -131,7 +131,7 @@ typedef struct RendererInfo { } RendererInfo; static RendererInfo renderers_info[] = { - {RED_RENDERER_CAIRO, "cairo"}, + {RED_RENDERER_SW, "sw"}, {RED_RENDERER_OGL_PBUF, "oglpbuf"}, {RED_RENDERER_OGL_PIXMAP, "oglpixmap"}, {RED_RENDERER_INVALID, NULL}, @@ -483,7 +483,7 @@ RedDispatcher *red_dispatcher_init(QXLInterface *qxl_interface) } quic_init(); - cairo_canvas_init(); + sw_canvas_init(); gl_canvas_init(); if (socketpair(AF_LOCAL, SOCK_STREAM, 0, channels) == -1) { -- cgit