Home
last modified time | relevance | path

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

/linux-4.1.27/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.1.27/drivers/tty/vt/
Dvt.c3950 unsigned char colormap[3*16]; in con_set_cmap() local
3952 if (copy_from_user(colormap, arg, sizeof(colormap))) in con_set_cmap()
3957 default_red[i] = colormap[k++]; in con_set_cmap()
3958 default_grn[i] = colormap[k++]; in con_set_cmap()
3959 default_blu[i] = colormap[k++]; in con_set_cmap()
3979 unsigned char colormap[3*16]; in con_get_cmap() local
3983 colormap[k++] = default_red[i]; in con_get_cmap()
3984 colormap[k++] = default_grn[i]; in con_get_cmap()
3985 colormap[k++] = default_blu[i]; in con_get_cmap()
3989 if (copy_to_user(arg, colormap, sizeof(colormap))) in con_get_cmap()