View | Details | Raw Unified | Return to bug 100469
Collapse All | Expand All

(-)src/cairo-xlib-surface.c (-1 / +1 lines)
Lines 1469-1475 _cairo_xlib_surface_create_internal (Dis Link Here
1469
1469
1470
    surface->buggy_repeat = FALSE;
1470
    surface->buggy_repeat = FALSE;
1471
    if (strcmp (ServerVendor (dpy), "The X.Org Foundation") == 0) {
1471
    if (strcmp (ServerVendor (dpy), "The X.Org Foundation") == 0) {
1472
	if (VendorRelease (dpy) <= 60802000)
1472
	if (VendorRelease (dpy) < 60802000)
1473
	    surface->buggy_repeat = TRUE;
1473
	    surface->buggy_repeat = TRUE;
1474
    } else if (strcmp (ServerVendor (dpy), "The XFree86 Project, Inc") == 0) {
1474
    } else if (strcmp (ServerVendor (dpy), "The XFree86 Project, Inc") == 0) {
1475
	if (VendorRelease (dpy) <= 40400000)
1475
	if (VendorRelease (dpy) <= 40400000)

Return to bug 100469