File: pixel_from_rgbs.c

package info (click to toggle)
garlic 1.6-1.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 4,440 kB
  • ctags: 1,403
  • sloc: ansic: 52,465; makefile: 1,134
file content (58 lines) | stat: -rw-r--r-- 1,419 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* Copyright (C) 2000 Damir Zucic */

/*=============================================================================

				pixel_from_rgbs.c

Purpose:
	Prepare pixel value (color) from RGB components. This function is
	used instead of XAllocColor,  which is too slow. Garlic uses only
	the TrueColor visual, so that the pixel value is created from raw
	RGB values by simple bit shifting.

Input:
	(1) Pointer to RGBS structure, with raw RGB values.
	(2) Pointer to GUIS structure.

Output:
	(1) Return value.

Return value:
	(1) Pixel value (unsigned long).

=============================================================================*/

#include <stdio.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>

#include "defines.h"
#include "typedefs.h"

/*======prepare pixel value from RGB components:=============================*/

unsigned long PixelFromRGBS_ (RGBS *rgbSP, GUIS *guiSP)
{
unsigned long		pixel;

/* Prepare the pixel value (color): */
pixel = (((unsigned long) rgbSP->red >>
	   guiSP->red_right_shift) <<
	   guiSP->red_left_shift) |
	(((unsigned long) rgbSP->green >>
	   guiSP->green_right_shift) <<
	   guiSP->green_left_shift) |
	(((unsigned long) rgbSP->blue >>
	   guiSP->blue_right_shift) <<
	   guiSP->blue_left_shift);

/* Return the pixel value: */
return pixel;
}

/*===========================================================================*/