search for: fbbit

Displaying 2 results from an estimated 2 matches for "fbbit".

Did you mean: fbit
2009 Mar 08
4
[PATCH 1/5] nv50: implement wfb
...->wfb_enabled && bo->tiled) { struct nouveau_pixmap *nvpix = nouveau_pixmap(ppix); NVAccelUploadM2MF(ppix, 0, 0, ppix->drawable.width, @@ -674,3 +684,194 @@ nouveau_exa_init(ScreenPtr pScreen) pNv->EXADriverPtr = exa; return TRUE; } + +/* WFB functions. */ + +static FbBits +nouveau_exa_wfb_read_memory_linear(const void *src, int size) +{ + FbBits bits = 0; + + memcpy(&bits, src, size); + + return bits; +} + +static void +nouveau_exa_wfb_write_memory_linear(void *dst, FbBits value, int size) +{ + memcpy(dst, &value, size); +} + +#define TILE_PITCH 32 +#define...
2008 Mar 06
0
[ANNOUNCE] xorg-server 1.4.99.901
Aaron Plattner (11): Bug #12015: Use the right offsets in the dst arguments of pixman_blt. stride is in FbBits-sized chunks, but xoff is not. Bump video driver ABI for pci-rework. Set noCompositeExtension to TRUE when failing to initialize the extension (e.g. when Xinerama is enabled). Don't segfault on shutdown if we never managed to connect to dbus. Restore the CompositeGlyphs...