X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=render%2Frender.c;h=8cc443546a969366100b4d6992b23f3600619bb1;hb=07a52aeaff0d8f429d9a740f49a85f22d51cf597;hp=397cebfaadc7dde9b7d490d2ac832847a4328223;hpb=6adb3d44544f0c740b63b07d2f9cfb9a1a83814a;p=chaz%2Fopenbox diff --git a/render/render.c b/render/render.c index 397cebfa..8cc44354 100644 --- a/render/render.c +++ b/render/render.c @@ -6,6 +6,7 @@ #include "font.h" #include "mask.h" #include "color.h" +#include "image.h" #include "../kernel/openbox.h" int render_depth; @@ -136,12 +137,19 @@ void x_paint(Window win, Appearance *l, int x, int y, int w, int h) l->xftdraw = XftDrawCreate(ob_display, l->pixmap, render_visual, render_colormap); } - font_draw(l->xftdraw, &l->texture[i].data.text, x, y, w, h); + font_draw(l->xftdraw, &l->texture[i].data.text, + &l->texture[i].position); break; case Bitmask: if (l->texture[i].data.mask.color->gc == None) color_allocate_gc(l->texture[i].data.mask.color); - mask_draw(l->pixmap, &l->texture[i].data.mask, w, h); + mask_draw(l->pixmap, &l->texture[i].data.mask, + &l->texture[i].position); + break; + case RGBA: + image_draw(l->surface.data.planar.pixel_data, + &l->texture[i].data.rgba, + &l->texture[i].position); break; } } @@ -170,7 +178,7 @@ Appearance *appearance_new(SurfaceType type, int numtex) out->surface.type = type; out->textures = numtex; out->xftdraw = NULL; - if (numtex) out->texture = g_new(Texture, numtex); + if (numtex) out->texture = g_new0(Texture, numtex); else out->texture = NULL; out->pixmap = None;