2 * Functions to use the XRender extension
4 * Copyright 2001, 2002 Huw D M Davies for CodeWeavers
7 * Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "wine/port.h"
36 #include "wine/library.h"
37 #include "wine/unicode.h"
38 #include "wine/debug.h"
40 static BOOL X11DRV_XRender_Installed = FALSE;
41 int using_client_side_fonts = FALSE;
43 WINE_DEFAULT_DEBUG_CHANNEL(xrender);
45 #ifdef HAVE_X11_EXTENSIONS_XRENDER_H
48 #include <X11/extensions/Xrender.h>
50 /* Older version of the Xrender headers don't define these */
51 #ifndef PictStandardARGB32
53 #define PictStandardARGB32 0
54 XRenderPictFormat * XRenderFindStandardFormat (Display *dpy, int format);
58 static XRenderPictFormat *screen_format; /* format of screen */
59 static XRenderPictFormat *mono_format; /* format of mono bitmap */
64 SIZE devsize; /* size in device coords */
68 #define INITIAL_REALIZED_BUF_SIZE 128
70 typedef enum { AA_None, AA_Grey, AA_RGB, AA_BGR, AA_VRGB, AA_VBGR } AA_Type;
77 XRenderPictFormat *font_format;
92 COLORREF lastTextColor;
96 static gsCacheEntry *glyphsetCache = NULL;
97 static DWORD glyphsetCacheSize = 0;
98 static INT lastfree = -1;
101 #define INIT_CACHE_SIZE 10
103 static int antialias = 1;
105 /* some default values just in case */
106 #ifndef SONAME_LIBX11
107 #define SONAME_LIBX11 "libX11.so"
109 #ifndef SONAME_LIBXEXT
110 #define SONAME_LIBXEXT "libXext.so"
112 #ifndef SONAME_LIBXRENDER
113 #define SONAME_LIBXRENDER "libXrender.so"
116 static void *xrender_handle;
118 #define MAKE_FUNCPTR(f) static typeof(f) * p##f;
119 MAKE_FUNCPTR(XRenderAddGlyphs)
120 MAKE_FUNCPTR(XRenderComposite)
121 MAKE_FUNCPTR(XRenderCompositeString8)
122 MAKE_FUNCPTR(XRenderCompositeString16)
123 MAKE_FUNCPTR(XRenderCompositeString32)
124 MAKE_FUNCPTR(XRenderCreateGlyphSet)
125 MAKE_FUNCPTR(XRenderCreatePicture)
126 MAKE_FUNCPTR(XRenderFillRectangle)
127 MAKE_FUNCPTR(XRenderFindFormat)
128 MAKE_FUNCPTR(XRenderFindStandardFormat)
129 MAKE_FUNCPTR(XRenderFindVisualFormat)
130 MAKE_FUNCPTR(XRenderFreeGlyphSet)
131 MAKE_FUNCPTR(XRenderFreePicture)
132 MAKE_FUNCPTR(XRenderSetPictureClipRectangles)
133 #ifdef HAVE_XRENDERSETPICTURETRANSFORM
134 MAKE_FUNCPTR(XRenderSetPictureTransform)
136 MAKE_FUNCPTR(XRenderQueryExtension)
139 static CRITICAL_SECTION xrender_cs;
140 static CRITICAL_SECTION_DEBUG critsect_debug =
143 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
144 0, 0, { 0, (DWORD)(__FILE__ ": xrender_cs") }
146 static CRITICAL_SECTION xrender_cs = { &critsect_debug, -1, 0, 0, 0, 0 };
149 /***********************************************************************
150 * X11DRV_XRender_Init
152 * Let's see if our XServer has the extension available
155 void X11DRV_XRender_Init(void)
157 int error_base, event_base, i;
158 XRenderPictFormat pf;
160 if (client_side_with_render &&
161 wine_dlopen(SONAME_LIBX11, RTLD_NOW|RTLD_GLOBAL, NULL, 0) &&
162 wine_dlopen(SONAME_LIBXEXT, RTLD_NOW|RTLD_GLOBAL, NULL, 0) &&
163 (xrender_handle = wine_dlopen(SONAME_LIBXRENDER, RTLD_NOW, NULL, 0)))
166 #define LOAD_FUNCPTR(f) if((p##f = wine_dlsym(xrender_handle, #f, NULL, 0)) == NULL) goto sym_not_found;
167 LOAD_FUNCPTR(XRenderAddGlyphs)
168 LOAD_FUNCPTR(XRenderComposite)
169 LOAD_FUNCPTR(XRenderCompositeString8)
170 LOAD_FUNCPTR(XRenderCompositeString16)
171 LOAD_FUNCPTR(XRenderCompositeString32)
172 LOAD_FUNCPTR(XRenderCreateGlyphSet)
173 LOAD_FUNCPTR(XRenderCreatePicture)
174 LOAD_FUNCPTR(XRenderFillRectangle)
175 LOAD_FUNCPTR(XRenderFindFormat)
176 LOAD_FUNCPTR(XRenderFindStandardFormat)
177 LOAD_FUNCPTR(XRenderFindVisualFormat)
178 LOAD_FUNCPTR(XRenderFreeGlyphSet)
179 LOAD_FUNCPTR(XRenderFreePicture)
180 LOAD_FUNCPTR(XRenderSetPictureClipRectangles)
181 LOAD_FUNCPTR(XRenderQueryExtension)
183 #ifdef HAVE_XRENDERSETPICTURETRANSFORM
184 #define LOAD_OPTIONAL_FUNCPTR(f) p##f = wine_dlsym(xrender_handle, #f, NULL, 0);
185 LOAD_OPTIONAL_FUNCPTR(XRenderSetPictureTransform)
186 #undef LOAD_OPTIONAL_FUNCPTR
191 if(pXRenderQueryExtension(gdi_display, &event_base, &error_base)) {
192 X11DRV_XRender_Installed = TRUE;
193 TRACE("Xrender is up and running error_base = %d\n", error_base);
194 screen_format = pXRenderFindVisualFormat(gdi_display, visual);
195 if(!screen_format) { /* This fails in buggy versions of libXrender.so */
198 "Wine has detected that you probably have a buggy version\n"
199 "of libXrender.so . Because of this client side font rendering\n"
200 "will be disabled. Please upgrade this library.\n");
201 X11DRV_XRender_Installed = FALSE;
204 pf.type = PictTypeDirect;
207 pf.direct.alphaMask = 1;
208 mono_format = pXRenderFindFormat(gdi_display, PictFormatType |
209 PictFormatDepth | PictFormatAlpha |
210 PictFormatAlphaMask, &pf, 0);
212 ERR("mono_format == NULL?\n");
213 X11DRV_XRender_Installed = FALSE;
220 if(X11DRV_XRender_Installed || client_side_with_core)
222 glyphsetCache = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
223 sizeof(*glyphsetCache) * INIT_CACHE_SIZE);
225 glyphsetCacheSize = INIT_CACHE_SIZE;
227 for(i = 0; i < INIT_CACHE_SIZE; i++) {
228 glyphsetCache[i].next = i + 1;
229 glyphsetCache[i].count = -1;
231 glyphsetCache[i-1].next = -1;
232 using_client_side_fonts = 1;
234 if(!X11DRV_XRender_Installed) {
235 TRACE("Xrender is not available on your XServer, client side rendering with the core protocol instead.\n");
236 if(screen_depth <= 8 || !client_side_antialias_with_core)
239 if(screen_depth <= 8 || !client_side_antialias_with_render)
243 else TRACE("Using X11 core fonts\n");
246 static BOOL fontcmp(LFANDSIZE *p1, LFANDSIZE *p2)
248 if(p1->hash != p2->hash) return TRUE;
249 if(memcmp(&p1->devsize, &p2->devsize, sizeof(p1->devsize))) return TRUE;
250 if(memcmp(&p1->lf, &p2->lf, offsetof(LOGFONTW, lfFaceName))) return TRUE;
251 return strcmpW(p1->lf.lfFaceName, p2->lf.lfFaceName);
255 static void walk_cache(void)
259 EnterCriticalSection(&xrender_cs);
260 for(i=mru; i >= 0; i = glyphsetCache[i].next)
261 TRACE("item %d\n", i);
262 LeaveCriticalSection(&xrender_cs);
266 static int LookupEntry(LFANDSIZE *plfsz)
270 for(i = mru; i >= 0; i = glyphsetCache[i].next) {
272 if(glyphsetCache[i].count == -1) { /* reached free list so stop */
277 if(!fontcmp(&glyphsetCache[i].lfsz, plfsz)) {
278 glyphsetCache[i].count++;
280 glyphsetCache[prev_i].next = glyphsetCache[i].next;
281 glyphsetCache[i].next = mru;
284 TRACE("found font in cache %d\n", i);
289 TRACE("font not in cache\n");
293 static void FreeEntry(int entry)
297 if(glyphsetCache[entry].glyphset) {
299 pXRenderFreeGlyphSet(gdi_display, glyphsetCache[entry].glyphset);
301 glyphsetCache[entry].glyphset = 0;
303 if(glyphsetCache[entry].nrealized) {
304 HeapFree(GetProcessHeap(), 0, glyphsetCache[entry].realized);
305 glyphsetCache[entry].realized = NULL;
306 if(glyphsetCache[entry].bitmaps) {
307 for(i = 0; i < glyphsetCache[entry].nrealized; i++)
308 HeapFree(GetProcessHeap(), 0, glyphsetCache[entry].bitmaps[i]);
309 HeapFree(GetProcessHeap(), 0, glyphsetCache[entry].bitmaps);
310 glyphsetCache[entry].bitmaps = NULL;
311 HeapFree(GetProcessHeap(), 0, glyphsetCache[entry].gis);
312 glyphsetCache[entry].gis = NULL;
314 glyphsetCache[entry].nrealized = 0;
318 static int AllocEntry(void)
320 int best = -1, prev_best = -1, i, prev_i = -1;
323 assert(glyphsetCache[lastfree].count == -1);
324 glyphsetCache[lastfree].count = 1;
326 lastfree = glyphsetCache[lastfree].next;
328 glyphsetCache[best].next = mru;
331 TRACE("empty space at %d, next lastfree = %d\n", mru, lastfree);
335 for(i = mru; i >= 0; i = glyphsetCache[i].next) {
336 if(glyphsetCache[i].count == 0) {
344 TRACE("freeing unused glyphset at cache %d\n", best);
346 glyphsetCache[best].count = 1;
348 glyphsetCache[prev_best].next = glyphsetCache[best].next;
349 glyphsetCache[best].next = mru;
357 TRACE("Growing cache\n");
360 glyphsetCache = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
362 (glyphsetCacheSize + INIT_CACHE_SIZE)
363 * sizeof(*glyphsetCache));
365 glyphsetCache = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
366 (glyphsetCacheSize + INIT_CACHE_SIZE)
367 * sizeof(*glyphsetCache));
369 for(best = i = glyphsetCacheSize; i < glyphsetCacheSize + INIT_CACHE_SIZE;
371 glyphsetCache[i].next = i + 1;
372 glyphsetCache[i].count = -1;
374 glyphsetCache[i-1].next = -1;
375 glyphsetCacheSize += INIT_CACHE_SIZE;
377 lastfree = glyphsetCache[best].next;
378 glyphsetCache[best].count = 1;
379 glyphsetCache[best].next = mru;
381 TRACE("new free cache slot at %d\n", mru);
385 static int GetCacheEntry(LFANDSIZE *plfsz)
390 if((ret = LookupEntry(plfsz)) != -1) return ret;
393 entry = glyphsetCache + ret;
394 entry->lfsz = *plfsz;
395 assert(entry->nrealized == 0);
402 entry->font_format = NULL;
407 static void dec_ref_cache(int index)
410 TRACE("dec'ing entry %d to %d\n", index, glyphsetCache[index].count - 1);
411 assert(glyphsetCache[index].count > 0);
412 glyphsetCache[index].count--;
415 static void lfsz_calc_hash(LFANDSIZE *plfsz)
417 DWORD hash = 0, *ptr;
420 hash ^= plfsz->devsize.cx;
421 hash ^= plfsz->devsize.cy;
422 for(i = 0, ptr = (DWORD*)&plfsz->lf; i < 7; i++, ptr++)
424 for(i = 0, ptr = (DWORD*)&plfsz->lf.lfFaceName; i < LF_FACESIZE/2; i++, ptr++) {
425 WCHAR *pwc = (WCHAR *)ptr;
435 /***********************************************************************
436 * X11DRV_XRender_Finalize
438 void X11DRV_XRender_Finalize(void)
442 EnterCriticalSection(&xrender_cs);
443 for(i = mru; i >= 0; i = glyphsetCache[i].next)
445 LeaveCriticalSection(&xrender_cs);
449 /***********************************************************************
450 * X11DRV_XRender_SelectFont
452 BOOL X11DRV_XRender_SelectFont(X11DRV_PDEVICE *physDev, HFONT hfont)
456 GetObjectW(hfont, sizeof(lfsz.lf), &lfsz.lf);
457 TRACE("h=%ld w=%ld weight=%ld it=%d charset=%d name=%s\n",
458 lfsz.lf.lfHeight, lfsz.lf.lfWidth, lfsz.lf.lfWeight,
459 lfsz.lf.lfItalic, lfsz.lf.lfCharSet, debugstr_w(lfsz.lf.lfFaceName));
460 lfsz.devsize.cx = X11DRV_XWStoDS( physDev, lfsz.lf.lfWidth );
461 lfsz.devsize.cy = X11DRV_YWStoDS( physDev, lfsz.lf.lfHeight );
462 lfsz_calc_hash(&lfsz);
464 EnterCriticalSection(&xrender_cs);
465 if(!physDev->xrender) {
466 physDev->xrender = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
467 sizeof(*physDev->xrender));
468 physDev->xrender->cache_index = -1;
470 else if(physDev->xrender->cache_index != -1)
471 dec_ref_cache(physDev->xrender->cache_index);
472 physDev->xrender->cache_index = GetCacheEntry(&lfsz);
473 LeaveCriticalSection(&xrender_cs);
477 /***********************************************************************
478 * X11DRV_XRender_DeleteDC
480 void X11DRV_XRender_DeleteDC(X11DRV_PDEVICE *physDev)
483 if(physDev->xrender->tile_pict)
484 pXRenderFreePicture(gdi_display, physDev->xrender->tile_pict);
486 if(physDev->xrender->tile_xpm)
487 XFreePixmap(gdi_display, physDev->xrender->tile_xpm);
489 if(physDev->xrender->pict) {
490 TRACE("freeing pict = %lx dc = %p\n", physDev->xrender->pict, physDev->hdc);
491 pXRenderFreePicture(gdi_display, physDev->xrender->pict);
495 EnterCriticalSection(&xrender_cs);
496 if(physDev->xrender->cache_index != -1)
497 dec_ref_cache(physDev->xrender->cache_index);
498 LeaveCriticalSection(&xrender_cs);
500 HeapFree(GetProcessHeap(), 0, physDev->xrender);
501 physDev->xrender = NULL;
505 /***********************************************************************
506 * X11DRV_XRender_UpdateDrawable
508 * This gets called from X11DRV_SetDrawable and X11DRV_SelectBitmap.
509 * It deletes the pict when the drawable changes.
511 void X11DRV_XRender_UpdateDrawable(X11DRV_PDEVICE *physDev)
513 if(physDev->xrender->pict) {
514 TRACE("freeing pict %08lx from dc %p drawable %08lx\n", physDev->xrender->pict,
515 physDev->hdc, physDev->drawable);
518 pXRenderFreePicture(gdi_display, physDev->xrender->pict);
521 physDev->xrender->pict = 0;
525 /************************************************************************
528 * Helper to ExtTextOut. Must be called inside xrender_cs
530 static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph)
537 gsCacheEntry *entry = glyphsetCache + physDev->xrender->cache_index;
538 UINT ggo_format = GGO_GLYPH_INDEX;
539 XRenderPictFormat pf;
541 if(entry->nrealized <= glyph) {
542 entry->nrealized = (glyph / 128 + 1) * 128;
545 entry->realized = HeapReAlloc(GetProcessHeap(),
548 entry->nrealized * sizeof(BOOL));
550 entry->realized = HeapAlloc(GetProcessHeap(),
552 entry->nrealized * sizeof(BOOL));
554 if(!X11DRV_XRender_Installed) {
556 entry->bitmaps = HeapReAlloc(GetProcessHeap(),
559 entry->nrealized * sizeof(entry->bitmaps[0]));
561 entry->bitmaps = HeapAlloc(GetProcessHeap(),
563 entry->nrealized * sizeof(entry->bitmaps[0]));
566 entry->gis = HeapReAlloc(GetProcessHeap(),
569 entry->nrealized * sizeof(entry->gis[0]));
571 entry->gis = HeapAlloc(GetProcessHeap(),
573 entry->nrealized * sizeof(entry->gis[0]));
579 ggo_format |= WINE_GGO_GRAY16_BITMAP;
583 ERR("aa = %d - not implemented\n", entry->aa);
585 ggo_format |= GGO_BITMAP;
589 buflen = GetGlyphOutlineW(physDev->hdc, glyph, ggo_format, &gm, 0, NULL,
591 if(buflen == GDI_ERROR) {
592 if(entry->aa != AA_None) {
594 ggo_format &= ~WINE_GGO_GRAY16_BITMAP;
595 ggo_format |= GGO_BITMAP;
596 buflen = GetGlyphOutlineW(physDev->hdc, glyph, ggo_format, &gm, 0, NULL,
599 if(buflen == GDI_ERROR) {
600 ERR("GetGlyphOutlineW failed\n");
603 TRACE("Turning off antialiasing for this monochrome font\n");
606 if(entry->glyphset == 0 && X11DRV_XRender_Installed) {
610 pf.direct.alphaMask = 0xff;
614 ERR("aa = %d - not implemented\n", entry->aa);
617 pf.direct.alphaMask = 1;
621 pf.type = PictTypeDirect;
625 entry->font_format = pXRenderFindFormat(gdi_display,
632 entry->glyphset = pXRenderCreateGlyphSet(gdi_display, entry->font_format);
637 buf = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, buflen);
638 GetGlyphOutlineW(physDev->hdc, glyph, ggo_format, &gm, buflen, buf, NULL);
639 entry->realized[glyph] = TRUE;
641 TRACE("buflen = %d. Got metrics: %dx%d adv=%d,%d origin=%ld,%ld\n",
643 gm.gmBlackBoxX, gm.gmBlackBoxY, gm.gmCellIncX, gm.gmCellIncY,
644 gm.gmptGlyphOrigin.x, gm.gmptGlyphOrigin.y);
646 gi.width = gm.gmBlackBoxX;
647 gi.height = gm.gmBlackBoxY;
648 gi.x = -gm.gmptGlyphOrigin.x;
649 gi.y = gm.gmptGlyphOrigin.y;
650 gi.xOff = gm.gmCellIncX;
651 gi.yOff = gm.gmCellIncY;
653 if(TRACE_ON(xrender)) {
658 if(entry->aa == AA_None) {
659 pitch = ((gi.width + 31) / 32) * 4;
660 for(i = 0; i < gi.height; i++) {
661 line = buf + i * pitch;
663 for(j = 0; j < pitch * 8; j++) {
664 strcat(output, (line[j / 8] & (1 << (7 - (j % 8)))) ? "#" : " ");
666 strcat(output, "\n");
670 static const char blks[] = " .:;!o*#";
674 pitch = ((gi.width + 3) / 4) * 4;
675 for(i = 0; i < gi.height; i++) {
676 line = buf + i * pitch;
678 for(j = 0; j < pitch; j++) {
679 str[0] = blks[line[j] >> 5];
682 strcat(output, "\n");
688 if(entry->glyphset) {
689 if(entry->aa == AA_None && BitmapBitOrder(gdi_display) != MSBFirst) {
690 unsigned char *byte = buf, c;
696 /* magic to flip bit order */
697 c = ((c << 1) & 0xaa) | ((c >> 1) & 0x55);
698 c = ((c << 2) & 0xcc) | ((c >> 2) & 0x33);
699 c = ((c << 4) & 0xf0) | ((c >> 4) & 0x0f);
706 pXRenderAddGlyphs(gdi_display, entry->glyphset, &gid, &gi, 1,
709 HeapFree(GetProcessHeap(), 0, buf);
711 entry->bitmaps[glyph] = buf;
712 memcpy(&entry->gis[glyph], &gi, sizeof(gi));
717 static void SharpGlyphMono(X11DRV_PDEVICE *physDev, INT x, INT y,
718 void *bitmap, XGlyphInfo *gi)
720 unsigned char *srcLine = bitmap, *src;
721 unsigned char bits, bitsMask;
722 int width = gi->width;
723 int stride = ((width + 31) & ~31) >> 3;
724 int height = gi->height;
728 TRACE("%d, %d\n", x, y);
737 bitsMask = 0x80; /* FreeType is always MSB first */
751 bitsMask = bitsMask >> 1;
757 } while (bits & bitsMask);
758 XFillRectangle (gdi_display, physDev->drawable,
759 physDev->gc, xspan, y, lenspan, 1);
771 bitsMask = bitsMask >> 1;
777 } while (!(bits & bitsMask));
784 static void SharpGlyphGray(X11DRV_PDEVICE *physDev, INT x, INT y,
785 void *bitmap, XGlyphInfo *gi)
787 unsigned char *srcLine = bitmap, *src, bits;
788 int width = gi->width;
789 int stride = ((width + 3) & ~3);
790 int height = gi->height;
815 } while (bits >= 0x80);
816 XFillRectangle (gdi_display, physDev->drawable,
817 physDev->gc, xspan, y, lenspan, 1);
830 } while (bits < 0x80);
838 static void ExamineBitfield (DWORD mask, int *shift, int *len)
843 while ((mask & 1) == 0)
849 while ((mask & 1) == 1)
858 static DWORD GetField (DWORD pixel, int shift, int len)
860 pixel = pixel & (((1 << (len)) - 1) << shift);
861 pixel = pixel << (32 - (shift + len)) >> 24;
864 pixel |= (pixel >> len);
871 static DWORD PutField (DWORD pixel, int shift, int len)
873 shift = shift - (8 - len);
875 pixel &= (((1 << len) - 1) << (8 - len));
883 static void SmoothGlyphGray(XImage *image, int x, int y, void *bitmap, XGlyphInfo *gi,
889 BYTE *maskLine, *mask, m;
894 BYTE src_r, src_g, src_b;
901 maskLine = (unsigned char *) bitmap;
902 maskStride = (width + 3) & ~3;
904 ExamineBitfield (image->red_mask, &r_shift, &r_len);
905 ExamineBitfield (image->green_mask, &g_shift, &g_len);
906 ExamineBitfield (image->blue_mask, &b_shift, &b_len);
908 src_r = GetField(color, r_shift, r_len);
909 src_g = GetField(color, g_shift, g_len);
910 src_b = GetField(color, b_shift, b_len);
915 maskLine += maskStride;
920 if(y >= image->height) break;
924 if(tx >= image->width) break;
930 XPutPixel (image, tx, y, color);
935 pixel = XGetPixel (image, tx, y);
937 r = GetField(pixel, r_shift, r_len);
938 r = ((BYTE)~m * (WORD)r + (BYTE)m * (WORD)src_r) >> 8;
939 g = GetField(pixel, g_shift, g_len);
940 g = ((BYTE)~m * (WORD)g + (BYTE)m * (WORD)src_g) >> 8;
941 b = GetField(pixel, b_shift, b_len);
942 b = ((BYTE)~m * (WORD)b + (BYTE)m * (WORD)src_b) >> 8;
944 pixel = (PutField (r, r_shift, r_len) |
945 PutField (g, g_shift, g_len) |
946 PutField (b, b_shift, b_len));
947 XPutPixel (image, tx, y, pixel);
953 static int XRenderErrorHandler(Display *dpy, XErrorEvent *event, void *arg)
958 /***********************************************************************
959 * X11DRV_XRender_ExtTextOut
961 BOOL X11DRV_XRender_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flags,
962 const RECT *lprect, LPCWSTR wstr, UINT count,
963 const INT *lpDx, INT breakExtra )
971 BOOL done_extents = FALSE;
972 INT width, xwidth, ywidth;
973 double cosEsc, sinEsc;
976 int render_op = PictOpOver;
981 HDC hdc = physDev->hdc;
982 int textPixel, backgroundPixel;
983 INT *deltas = NULL, char_extra;
984 HRGN saved_region = 0;
985 UINT align = GetTextAlign( hdc );
987 TRACE("%p, %d, %d, %08x, %p, %s, %d, %p)\n", hdc, x, y, flags,
988 lprect, debugstr_wn(wstr, count), count, lpDx);
990 if(flags & ETO_GLYPH_INDEX)
991 glyphs = (const WORD*)wstr;
993 glyphs = HeapAlloc(GetProcessHeap(), 0, count * sizeof(WCHAR));
994 GetGlyphIndicesW(hdc, wstr, count, (WORD*)glyphs, 0);
998 TRACE("rect: %ld,%ld - %ld,%ld\n", lprect->left, lprect->top, lprect->right,
1000 TRACE("align = %x bkmode = %x mapmode = %x\n", align, GetBkMode(hdc), GetMapMode(hdc));
1002 if(align & TA_UPDATECP)
1004 GetCurrentPositionEx( hdc, &pt );
1009 GetTextMetricsW(hdc, &tm);
1010 GetObjectW(GetCurrentObject(hdc, OBJ_FONT), sizeof(lf), &lf);
1012 if(!(tm.tmPitchAndFamily & TMPF_VECTOR)) /* Non-scalable fonts shouldn't be rotated */
1013 lf.lfEscapement = 0;
1015 if(lf.lfEscapement != 0) {
1016 cosEsc = cos(lf.lfEscapement * M_PI / 1800);
1017 sinEsc = sin(lf.lfEscapement * M_PI / 1800);
1023 if(flags & (ETO_CLIPPED | ETO_OPAQUE)) {
1025 if(flags & ETO_CLIPPED) return FALSE;
1026 GetTextExtentPointI(hdc, glyphs, count, &sz);
1027 done_extents = TRUE;
1030 rc.right = x + sz.cx;
1031 rc.bottom = y + sz.cy;
1036 LPtoDP(hdc, (POINT*)&rc, 2);
1038 if(rc.left > rc.right) {INT tmp = rc.left; rc.left = rc.right; rc.right = tmp;}
1039 if(rc.top > rc.bottom) {INT tmp = rc.top; rc.top = rc.bottom; rc.bottom = tmp;}
1042 xgcval.function = GXcopy;
1043 xgcval.background = physDev->backgroundPixel;
1044 xgcval.fill_style = FillSolid;
1046 XChangeGC( gdi_display, physDev->gc, GCFunction | GCBackground | GCFillStyle, &xgcval );
1047 wine_tsx11_unlock();
1049 X11DRV_LockDIBSection( physDev, DIB_Status_GdiMod, FALSE );
1051 if(physDev->depth == 1) {
1052 if((physDev->textPixel & 0xffffff) == 0) {
1054 backgroundPixel = 1;
1057 backgroundPixel = 0;
1060 textPixel = physDev->textPixel;
1061 backgroundPixel = physDev->backgroundPixel;
1064 if(flags & ETO_OPAQUE) {
1066 XSetForeground( gdi_display, physDev->gc, backgroundPixel );
1067 XFillRectangle( gdi_display, physDev->drawable, physDev->gc,
1068 physDev->org.x + rc.left, physDev->org.y + rc.top,
1069 rc.right - rc.left, rc.bottom - rc.top );
1070 wine_tsx11_unlock();
1080 LPtoDP(hdc, &pt, 1);
1084 TRACE("real x,y %d,%d\n", x, y);
1086 if((char_extra = GetTextCharacterExtra(hdc)) != 0) {
1089 deltas = HeapAlloc(GetProcessHeap(), 0, count * sizeof(INT));
1090 for(i = 0; i < count; i++) {
1092 deltas[i] = lpDx[i] + char_extra;
1094 GetTextExtentPointI(hdc, glyphs + i, 1, &tmpsz);
1095 deltas[i] = tmpsz.cx;
1099 deltas = (INT*)lpDx;
1103 for(idx = 0; idx < count; idx++)
1104 width += deltas[idx];
1107 GetTextExtentPointI(hdc, glyphs, count, &sz);
1108 done_extents = TRUE;
1112 width = X11DRV_XWStoDS(physDev, width);
1113 xwidth = width * cosEsc;
1114 ywidth = width * sinEsc;
1116 tm.tmAscent = abs(X11DRV_YWStoDS(physDev, tm.tmAscent));
1117 tm.tmDescent = abs(X11DRV_YWStoDS(physDev, tm.tmDescent));
1118 switch( align & (TA_LEFT | TA_RIGHT | TA_CENTER) ) {
1120 if (align & TA_UPDATECP) {
1123 DPtoLP(hdc, &pt, 1);
1124 MoveToEx(hdc, pt.x, pt.y, NULL);
1136 if (align & TA_UPDATECP) {
1139 DPtoLP(hdc, &pt, 1);
1140 MoveToEx(hdc, pt.x, pt.y, NULL);
1145 switch( align & (TA_TOP | TA_BOTTOM | TA_BASELINE) ) {
1147 y += tm.tmAscent * cosEsc;
1148 x += tm.tmAscent * sinEsc;
1152 y -= tm.tmDescent * cosEsc;
1153 x -= tm.tmDescent * sinEsc;
1160 if (flags & ETO_CLIPPED)
1163 RECT clip_rect = *lprect;
1165 LPtoDP( hdc, (POINT *)&clip_rect, 2 );
1166 clip_region = CreateRectRgnIndirect( &clip_rect );
1167 /* make a copy of the current device region */
1168 saved_region = CreateRectRgn( 0, 0, 0, 0 );
1169 CombineRgn( saved_region, physDev->region, 0, RGN_COPY );
1170 X11DRV_SetDeviceClipping( physDev, saved_region, clip_region );
1171 DeleteObject( clip_region );
1174 if(X11DRV_XRender_Installed) {
1175 if(!physDev->xrender->pict) {
1176 XRenderPictureAttributes pa;
1177 pa.subwindow_mode = IncludeInferiors;
1180 physDev->xrender->pict = pXRenderCreatePicture(gdi_display,
1182 (physDev->depth == 1) ?
1183 mono_format : screen_format,
1184 CPSubwindowMode, &pa);
1185 wine_tsx11_unlock();
1187 TRACE("allocing pict = %lx dc = %p drawable = %08lx\n",
1188 physDev->xrender->pict, hdc, physDev->drawable);
1190 TRACE("using existing pict = %lx dc = %p drawable = %08lx\n",
1191 physDev->xrender->pict, hdc, physDev->drawable);
1194 if ((data = X11DRV_GetRegionData( physDev->region, 0 )))
1197 pXRenderSetPictureClipRectangles( gdi_display, physDev->xrender->pict,
1198 physDev->org.x, physDev->org.y,
1199 (XRectangle *)data->Buffer, data->rdh.nCount );
1200 wine_tsx11_unlock();
1201 HeapFree( GetProcessHeap(), 0, data );
1205 if(GetBkMode(hdc) != TRANSPARENT) {
1206 if(!((flags & ETO_CLIPPED) && (flags & ETO_OPAQUE))) {
1207 if(!(flags & ETO_OPAQUE) || x < rc.left || x + width >= rc.right ||
1208 y - tm.tmAscent < rc.top || y + tm.tmDescent >= rc.bottom) {
1210 XSetForeground( gdi_display, physDev->gc, backgroundPixel );
1211 XFillRectangle( gdi_display, physDev->drawable, physDev->gc,
1212 physDev->org.x + x, physDev->org.y + y - tm.tmAscent,
1213 width, tm.tmAscent + tm.tmDescent );
1214 wine_tsx11_unlock();
1219 if(X11DRV_XRender_Installed) {
1220 /* Create a 1x1 pixmap to tile over the font mask */
1221 if(!physDev->xrender->tile_xpm) {
1222 XRenderPictureAttributes pa;
1224 XRenderPictFormat *format = (physDev->depth == 1) ? mono_format : screen_format;
1226 physDev->xrender->tile_xpm = XCreatePixmap(gdi_display,
1231 physDev->xrender->tile_pict = pXRenderCreatePicture(gdi_display,
1232 physDev->xrender->tile_xpm,
1235 wine_tsx11_unlock();
1236 TRACE("Created pixmap of depth %d\n", format->depth);
1237 /* init lastTextColor to something different from textPixel */
1238 physDev->xrender->lastTextColor = ~physDev->textPixel;
1242 if(physDev->textPixel != physDev->xrender->lastTextColor) {
1243 if(physDev->depth != 1) {
1244 /* Map 0 -- 0xff onto 0 -- 0xffff */
1249 ExamineBitfield (visual->red_mask, &r_shift, &r_len );
1250 ExamineBitfield (visual->green_mask, &g_shift, &g_len);
1251 ExamineBitfield (visual->blue_mask, &b_shift, &b_len);
1253 col.red = GetField(physDev->textPixel, r_shift, r_len);
1254 col.red |= col.red << 8;
1255 col.green = GetField(physDev->textPixel, g_shift, g_len);
1256 col.green |= col.green << 8;
1257 col.blue = GetField(physDev->textPixel, b_shift, b_len);
1258 col.blue |= col.blue << 8;
1260 } else { /* for a 1bpp bitmap we always need a 1 in the tile */
1261 col.red = col.green = col.blue = 0;
1265 pXRenderFillRectangle(gdi_display, PictOpSrc,
1266 physDev->xrender->tile_pict,
1268 wine_tsx11_unlock();
1269 physDev->xrender->lastTextColor = physDev->textPixel;
1272 /* FIXME the mapping of Text/BkColor onto 1 or 0 needs investigation.
1274 if((physDev->depth == 1) && (textPixel == 0))
1275 render_op = PictOpOutReverse; /* This gives us 'black' text */
1278 EnterCriticalSection(&xrender_cs);
1279 entry = glyphsetCache + physDev->xrender->cache_index;
1281 for(idx = 0; idx < count; idx++) {
1282 if(glyphs[idx] >= entry->nrealized || entry->realized[glyphs[idx]] == FALSE) {
1283 UploadGlyph(physDev, glyphs[idx]);
1288 TRACE("Writing %s at %ld,%ld\n", debugstr_wn(wstr,count),
1289 physDev->org.x + x, physDev->org.y + y);
1291 if(X11DRV_XRender_Installed) {
1294 pXRenderCompositeString16(gdi_display, render_op,
1295 physDev->xrender->tile_pict,
1296 physDev->xrender->pict,
1297 entry->font_format, entry->glyphset,
1298 0, 0, physDev->org.x + x, physDev->org.y + y,
1302 INT offset = 0, xoff = 0, yoff = 0;
1303 for(idx = 0; idx < count; idx++) {
1304 pXRenderCompositeString16(gdi_display, render_op,
1305 physDev->xrender->tile_pict,
1306 physDev->xrender->pict,
1307 entry->font_format, entry->glyphset,
1308 0, 0, physDev->org.x + x + xoff,
1309 physDev->org.y + y + yoff,
1311 offset += X11DRV_XWStoDS(physDev, deltas[idx]);
1312 xoff = offset * cosEsc;
1313 yoff = offset * -sinEsc;
1316 wine_tsx11_unlock();
1319 INT offset = 0, xoff = 0, yoff = 0;
1321 XSetForeground( gdi_display, physDev->gc, textPixel );
1323 if(entry->aa == AA_None) {
1324 for(idx = 0; idx < count; idx++) {
1325 SharpGlyphMono(physDev, physDev->org.x + x + xoff,
1326 physDev->org.y + y + yoff,
1327 entry->bitmaps[glyphs[idx]],
1328 &entry->gis[glyphs[idx]]);
1330 offset += X11DRV_XWStoDS(physDev, deltas[idx]);
1331 xoff = offset * cosEsc;
1332 yoff = offset * -sinEsc;
1335 xoff += entry->gis[glyphs[idx]].xOff;
1336 yoff += entry->gis[glyphs[idx]].yOff;
1339 } else if(physDev->depth == 1) {
1340 for(idx = 0; idx < count; idx++) {
1341 SharpGlyphGray(physDev, physDev->org.x + x + xoff,
1342 physDev->org.y + y + yoff,
1343 entry->bitmaps[glyphs[idx]],
1344 &entry->gis[glyphs[idx]]);
1346 offset += X11DRV_XWStoDS(physDev, deltas[idx]);
1347 xoff = offset * cosEsc;
1348 yoff = offset * -sinEsc;
1351 xoff += entry->gis[glyphs[idx]].xOff;
1352 yoff += entry->gis[glyphs[idx]].yOff;
1358 unsigned int w, h, dummy_uint;
1359 Window dummy_window;
1361 int image_x, image_y, image_off_x, image_off_y, image_w, image_h;
1362 RECT extents = {0, 0, 0, 0};
1366 XGetGeometry(gdi_display, physDev->drawable, &dummy_window, &dummy_int, &dummy_int,
1367 &w, &h, &dummy_uint, &dummy_uint);
1368 TRACE("drawable %dx%d\n", w, h);
1370 for(idx = 0; idx < count; idx++) {
1371 if(extents.left > cur.x - entry->gis[glyphs[idx]].x)
1372 extents.left = cur.x - entry->gis[glyphs[idx]].x;
1373 if(extents.top > cur.y - entry->gis[glyphs[idx]].y)
1374 extents.top = cur.y - entry->gis[glyphs[idx]].y;
1375 if(extents.right < cur.x - entry->gis[glyphs[idx]].x + entry->gis[glyphs[idx]].width)
1376 extents.right = cur.x - entry->gis[glyphs[idx]].x + entry->gis[glyphs[idx]].width;
1377 if(extents.bottom < cur.y - entry->gis[glyphs[idx]].y + entry->gis[glyphs[idx]].height)
1378 extents.bottom = cur.y - entry->gis[glyphs[idx]].y + entry->gis[glyphs[idx]].height;
1380 offset += X11DRV_XWStoDS(physDev, deltas[idx]);
1381 cur.x = offset * cosEsc;
1382 cur.y = offset * -sinEsc;
1384 cur.x += entry->gis[glyphs[idx]].xOff;
1385 cur.y += entry->gis[glyphs[idx]].yOff;
1388 TRACE("glyph extents %ld,%ld - %ld,%ld drawable x,y %ld,%ld\n", extents.left, extents.top,
1389 extents.right, extents.bottom, physDev->org.x + x, physDev->org.y + y);
1391 if(physDev->org.x + x + extents.left >= 0) {
1392 image_x = physDev->org.x + x + extents.left;
1396 image_off_x = physDev->org.x + x + extents.left;
1398 if(physDev->org.y + y + extents.top >= 0) {
1399 image_y = physDev->org.y + y + extents.top;
1403 image_off_y = physDev->org.y + y + extents.top;
1405 if(physDev->org.x + x + extents.right < w)
1406 image_w = physDev->org.x + x + extents.right - image_x;
1408 image_w = w - image_x;
1409 if(physDev->org.y + y + extents.bottom < h)
1410 image_h = physDev->org.y + y + extents.bottom - image_y;
1412 image_h = h - image_y;
1414 if(image_w <= 0 || image_h <= 0) goto no_image;
1416 X11DRV_expect_error(gdi_display, XRenderErrorHandler, NULL);
1417 image = XGetImage(gdi_display, physDev->drawable,
1418 image_x, image_y, image_w, image_h,
1419 AllPlanes, ZPixmap);
1420 X11DRV_check_error();
1422 TRACE("XGetImage(%p, %x, %d, %d, %d, %d, %lx, %x) depth = %d rets %p\n",
1423 gdi_display, (int)physDev->drawable, image_x, image_y,
1424 image_w, image_h, AllPlanes, ZPixmap,
1425 physDev->depth, image);
1427 Pixmap xpm = XCreatePixmap(gdi_display, physDev->drawable, image_w, image_h,
1432 gcv.graphics_exposures = False;
1433 gc = XCreateGC(gdi_display, xpm, GCGraphicsExposures, &gcv);
1434 XCopyArea(gdi_display, physDev->drawable, xpm, gc, image_x, image_y,
1435 image_w, image_h, 0, 0);
1436 XFreeGC(gdi_display, gc);
1437 X11DRV_expect_error(gdi_display, XRenderErrorHandler, NULL);
1438 image = XGetImage(gdi_display, xpm, 0, 0, image_w, image_h, AllPlanes,
1440 X11DRV_check_error();
1441 XFreePixmap(gdi_display, xpm);
1443 if(!image) goto no_image;
1445 image->red_mask = visual->red_mask;
1446 image->green_mask = visual->green_mask;
1447 image->blue_mask = visual->blue_mask;
1449 offset = xoff = yoff = 0;
1450 for(idx = 0; idx < count; idx++) {
1451 SmoothGlyphGray(image, xoff + image_off_x - extents.left,
1452 yoff + image_off_y - extents.top,
1453 entry->bitmaps[glyphs[idx]],
1454 &entry->gis[glyphs[idx]],
1455 physDev->textPixel);
1457 offset += X11DRV_XWStoDS(physDev, deltas[idx]);
1458 xoff = offset * cosEsc;
1459 yoff = offset * -sinEsc;
1461 xoff += entry->gis[glyphs[idx]].xOff;
1462 yoff += entry->gis[glyphs[idx]].yOff;
1466 XPutImage(gdi_display, physDev->drawable, physDev->gc, image, 0, 0,
1467 image_x, image_y, image_w, image_h);
1468 XDestroyImage(image);
1471 wine_tsx11_unlock();
1473 LeaveCriticalSection(&xrender_cs);
1475 if (lf.lfUnderline || lf.lfStrikeOut) {
1476 int underlinePos, strikeoutPos;
1477 int underlineWidth, strikeoutWidth;
1478 UINT nMetricsSize = GetOutlineTextMetricsW(hdc, 0, NULL);
1479 OUTLINETEXTMETRICW* otm = NULL;
1483 underlineWidth = tm.tmAscent / 20 + 1;
1484 strikeoutPos = tm.tmAscent / 2;
1485 strikeoutWidth = underlineWidth;
1487 otm = HeapAlloc(GetProcessHeap(), 0, nMetricsSize);
1488 if (!otm) goto done;
1490 GetOutlineTextMetricsW(hdc, nMetricsSize, otm);
1491 underlinePos = otm->otmsUnderscorePosition;
1492 underlineWidth = otm->otmsUnderscoreSize;
1493 strikeoutPos = otm->otmsStrikeoutPosition;
1494 strikeoutWidth = otm->otmsStrikeoutSize;
1498 XSetForeground( gdi_display, physDev->gc, physDev->textPixel );
1500 if (lf.lfUnderline) {
1501 underlinePos = X11DRV_YWStoDS(physDev, underlinePos);
1502 underlineWidth = X11DRV_YWStoDS(physDev, underlineWidth);
1504 XSetLineAttributes( gdi_display, physDev->gc, underlineWidth,
1505 LineSolid, CapProjecting, JoinBevel );
1506 XDrawLine( gdi_display, physDev->drawable, physDev->gc,
1507 physDev->org.x + x - underlinePos * sinEsc,
1508 physDev->org.y + y - underlinePos * cosEsc,
1509 physDev->org.x + x + width * cosEsc - underlinePos * sinEsc,
1510 physDev->org.y + y - width * sinEsc - underlinePos * cosEsc );
1513 if (lf.lfStrikeOut) {
1514 strikeoutPos = X11DRV_YWStoDS(physDev, strikeoutPos);
1515 strikeoutWidth = X11DRV_YWStoDS(physDev, strikeoutWidth);
1517 XSetLineAttributes( gdi_display, physDev->gc, strikeoutWidth,
1518 LineSolid, CapProjecting, JoinBevel );
1519 XDrawLine( gdi_display, physDev->drawable, physDev->gc,
1520 physDev->org.x + x - strikeoutPos * sinEsc,
1521 physDev->org.y + y - strikeoutPos * cosEsc,
1522 physDev->org.x + x + width * cosEsc - strikeoutPos * sinEsc,
1523 physDev->org.y + y - width * sinEsc - strikeoutPos * cosEsc);
1525 wine_tsx11_unlock();
1526 HeapFree(GetProcessHeap(), 0, otm);
1529 if(deltas && deltas != lpDx)
1530 HeapFree(GetProcessHeap(), 0, deltas);
1532 if (flags & ETO_CLIPPED)
1534 /* restore the device region */
1535 X11DRV_SetDeviceClipping( physDev, saved_region, 0 );
1536 DeleteObject( saved_region );
1542 X11DRV_UnlockDIBSection( physDev, TRUE );
1543 if(glyphs != wstr) HeapFree(GetProcessHeap(), 0, (WORD*)glyphs);
1547 BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst, INT heightDst,
1548 X11DRV_PDEVICE *devSrc, INT xSrc, INT ySrc, INT widthSrc, INT heightSrc,
1549 BLENDFUNCTION blendfn)
1551 XRenderPictureAttributes pa;
1552 XRenderPictFormat *src_format;
1553 Picture dst_pict, src_pict;
1560 char *dstbits, *data;
1563 BOOL top_down = FALSE;
1565 if(!X11DRV_XRender_Installed) {
1566 FIXME("Unable to AlphaBlend without Xrender\n");
1571 pts[1].x = xDst + widthDst;
1572 pts[1].y = yDst + heightDst;
1573 LPtoDP(devDst->hdc, pts, 2);
1576 widthDst = pts[1].x - pts[0].x;
1577 heightDst = pts[1].y - pts[0].y;
1581 pts[1].x = xSrc + widthSrc;
1582 pts[1].y = ySrc + heightSrc;
1583 LPtoDP(devSrc->hdc, pts, 2);
1586 widthSrc = pts[1].x - pts[0].x;
1587 heightSrc = pts[1].y - pts[0].y;
1589 #ifndef HAVE_XRENDERSETPICTURETRANSFORM
1590 if(widthDst != widthSrc || heightDst != heightSrc)
1592 if(!pXRenderSetPictureTransform)
1595 FIXME("Unable to Stretch, XRenderSetPictureTransform is currently required\n");
1599 hBitmap = GetCurrentObject( devSrc->hdc, OBJ_BITMAP );
1600 bmp = (BITMAPOBJ *)GDI_GetObjPtr( hBitmap, BITMAP_MAGIC );
1601 if(!bmp || !bmp->dib) {
1602 FIXME("not a dibsection\n");
1603 GDI_ReleaseObj( hBitmap );
1607 if(bmp->dib->dsBm.bmBitsPixel != 32) {
1608 FIXME("not a 32 bpp dibsection\n");
1609 GDI_ReleaseObj( hBitmap );
1612 dstbits = data = HeapAlloc(GetProcessHeap(), 0, heightSrc * widthSrc * 4);
1614 if(bmp->dib->dsBmih.biHeight < 0) { /* top-down dib */
1616 dstbits += widthSrc * (heightSrc - 1) * 4;
1618 for(y = ySrc + heightSrc - 1; y >= ySrc; y--) {
1619 memcpy(dstbits, (char *)bmp->dib->dsBm.bmBits + y * bmp->dib->dsBm.bmWidthBytes + xSrc * 4,
1621 dstbits += (top_down ? -1 : 1) * widthSrc * 4;
1625 image = XCreateImage(gdi_display, visual, 32, ZPixmap, 0,
1626 data, widthSrc, heightSrc, 32, widthSrc * 4);
1628 src_format = pXRenderFindStandardFormat(gdi_display, PictStandardARGB32);
1631 TRACE("src_format %p\n", src_format);
1633 pa.subwindow_mode = IncludeInferiors;
1635 /* FIXME use devDst->xrender->pict ? */
1636 dst_pict = pXRenderCreatePicture(gdi_display,
1638 (devDst->depth == 1) ?
1639 mono_format : screen_format,
1640 CPSubwindowMode, &pa);
1641 TRACE("dst_pict %08lx\n", dst_pict);
1642 TRACE("src_drawable = %08lx\n", devSrc->drawable);
1643 xpm = XCreatePixmap(gdi_display,
1645 widthSrc, heightSrc, 32);
1646 gcv.graphics_exposures = False;
1647 gc = XCreateGC(gdi_display, xpm, GCGraphicsExposures, &gcv);
1648 TRACE("xpm = %08lx\n", xpm);
1649 XPutImage(gdi_display, xpm, gc, image, 0, 0, 0, 0, widthSrc, heightSrc);
1651 src_pict = pXRenderCreatePicture(gdi_display,
1653 CPSubwindowMode, &pa);
1654 TRACE("src_pict %08lx\n", src_pict);
1656 #ifdef HAVE_XRENDERSETPICTURETRANSFORM
1657 if(widthDst != widthSrc || heightDst != heightSrc) {
1658 double xscale = widthSrc/(double)widthDst;
1659 double yscale = heightSrc/(double)heightDst;
1660 XTransform xform = {{
1661 { XDoubleToFixed(xscale), XDoubleToFixed(0), XDoubleToFixed(0) },
1662 { XDoubleToFixed(0), XDoubleToFixed(yscale), XDoubleToFixed(0) },
1663 { XDoubleToFixed(0), XDoubleToFixed(0), XDoubleToFixed(1) }
1665 pXRenderSetPictureTransform(gdi_display, src_pict, &xform);
1668 pXRenderComposite(gdi_display, PictOpOver, src_pict, 0, dst_pict,
1670 xDst + devDst->org.x, yDst + devDst->org.y, widthDst, heightDst);
1673 pXRenderFreePicture(gdi_display, src_pict);
1674 XFreePixmap(gdi_display, xpm);
1675 XFreeGC(gdi_display, gc);
1676 pXRenderFreePicture(gdi_display, dst_pict);
1678 XDestroyImage(image);
1680 wine_tsx11_unlock();
1681 HeapFree(GetProcessHeap(), 0, data);
1682 GDI_ReleaseObj( hBitmap );
1686 #else /* HAVE_X11_EXTENSIONS_XRENDER_H */
1688 void X11DRV_XRender_Init(void)
1690 TRACE("XRender support not compiled in.\n");
1694 void X11DRV_XRender_Finalize(void)
1698 BOOL X11DRV_XRender_SelectFont(X11DRV_PDEVICE *physDev, HFONT hfont)
1704 void X11DRV_XRender_DeleteDC(X11DRV_PDEVICE *physDev)
1710 BOOL X11DRV_XRender_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flags,
1711 const RECT *lprect, LPCWSTR wstr, UINT count,
1712 const INT *lpDx, INT breakExtra )
1718 void X11DRV_XRender_UpdateDrawable(X11DRV_PDEVICE *physDev)
1724 BOOL X11DRV_AlphaBlend(X11DRV_PDEVICE *devDst, INT xDst, INT yDst, INT widthDst, INT heightDst,
1725 X11DRV_PDEVICE *devSrc, INT xSrc, INT ySrc, INT widthSrc, INT heightSrc,
1726 BLENDFUNCTION blendfn)
1728 FIXME("not supported - XRENDER headers were missing at compile time\n");
1732 #endif /* HAVE_X11_EXTENSIONS_XRENDER_H */