Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 458978 | Differences between
and this patch

Collapse All | Expand All

(-)netsurf-2.9/framebuffer/fbtk/fbtk.c.orig (-1 / +3 lines)
Lines 342-348 Link Here
342
			(nsfb_colour_t *)bm->pixdata,
342
			(nsfb_colour_t *)bm->pixdata,
343
			bm->width,
343
			bm->width,
344
			bm->height,
344
			bm->height,
345
			bm->width);
345
			bm->width,
346
			bm->hot_x,
347
			bm->hot_y);
346
348
347
	return 0;
349
	return 0;
348
}
350
}
(-)netsurf-2.9/framebuffer/framebuffer.c.orig (-1 / +1 lines)
Lines 425-431 Link Here
425
bool
425
bool
426
framebuffer_set_cursor(struct fbtk_bitmap *bm)
426
framebuffer_set_cursor(struct fbtk_bitmap *bm)
427
{
427
{
428
    return nsfb_cursor_set(nsfb, (nsfb_colour_t *)bm->pixdata, bm->width, bm->height, bm->width);
428
    return nsfb_cursor_set(nsfb, (nsfb_colour_t *)bm->pixdata, bm->width, bm->height, bm->width, bm->hot_x, bm->hot_y);
429
} 
429
} 
430
430
431
nsfb_t *framebuffer_set_surface(nsfb_t *new_nsfb)
431
nsfb_t *framebuffer_set_surface(nsfb_t *new_nsfb)

Return to bug 458978