Home
last modified time | relevance | path

Searched refs:colormap (Results 1 – 4 of 4) sorted by relevance

/linux-4.4.14/Documentation/fb/
Dcmap_xfbdev.txt35 colormap. For example, Xfbdev hits the following:
37 xc-011010/programs/Xserver/dix/colormap.c:
Dinternals.txt32 Device independent colormap information. You can get and set the colormap
Dapi.txt123 Pixel values are encoded as indices into a colormap that stores red, green and
124 blue components. The colormap is read-only for FB_VISUAL_STATIC_PSEUDOCOLOR
/linux-4.4.14/drivers/tty/vt/
Dvt.c3985 unsigned char colormap[3*16]; in con_set_cmap() local
3987 if (copy_from_user(colormap, arg, sizeof(colormap))) in con_set_cmap()
3992 default_red[i] = colormap[k++]; in con_set_cmap()
3993 default_grn[i] = colormap[k++]; in con_set_cmap()
3994 default_blu[i] = colormap[k++]; in con_set_cmap()
4014 unsigned char colormap[3*16]; in con_get_cmap() local
4018 colormap[k++] = default_red[i]; in con_get_cmap()
4019 colormap[k++] = default_grn[i]; in con_get_cmap()
4020 colormap[k++] = default_blu[i]; in con_get_cmap()
4024 if (copy_to_user(arg, colormap, sizeof(colormap))) in con_get_cmap()