mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-22 02:08:10 +02:00
Added comments to glamor_pixmap_create. To be refined in the future.
We need to identify whether a pixmap is a CPU memory pixmap or a
GPU pixmap. Current implementation is not correct. There are three
cases:
1. Too large pixmap, we direct it to CPU memory pixmap.
2. w ==0 || h == 0 pixmap, this case has two possibilities:
2.1 It will become a screen pixmap latter, then it should be
GPU type.
2.2 It's a scratch pixmap or created from a share memory, then
it should belong to CPU memory.
XXX, need to be refined latter.
|
||
|---|---|---|
| .. | ||
| glu3 | ||
| glamor.c | ||
| glamor.h | ||
| glamor_copyarea.c | ||
| glamor_copywindow.c | ||
| glamor_core.c | ||
| glamor_fill.c | ||
| glamor_fillspans.c | ||
| glamor_getspans.c | ||
| glamor_glyphs.c | ||
| glamor_polyfillrect.c | ||
| glamor_polylines.c | ||
| glamor_priv.h | ||
| glamor_putimage.c | ||
| glamor_render.c | ||
| glamor_setspans.c | ||
| glamor_tile.c | ||
| Makefile.am | ||