File: interpolate_color.c

package info (click to toggle)
garlic 1.4-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,192 kB
  • ctags: 1,368
  • sloc: ansic: 49,603; makefile: 1,079
file content (87 lines) | stat: -rw-r--r-- 2,004 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* Copyright (C) 2000 Damir Zucic */

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

				interpolate_color.c

Purpose:
	Interpolate (calculate) additional color, using two old colors.

Input:
	(1) The first input color.
	(2) The second input color.
	(3) Pointer to GUIS structure.

Output:
	(1) Return value.

Return value:
	The pixel value calculated.


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

#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"

/*======interpolate color:===================================================*/

unsigned long InterpolateColor_ (unsigned long color1ID,
				 unsigned long color2ID,
				 GUIS *guiSP)
{
unsigned long		colorID;
unsigned long		red_mask, green_mask, blue_mask;
unsigned long		red1, red2, red;
unsigned long		green1, green2, green;
unsigned long		blue1, blue2, blue;
double			r1, r2, g1, g2, b1, b2;
double			w = 0.5;
double			r, g, b;

/* Copy masks: */
red_mask   = guiSP->visual_infoS.red_mask;
green_mask = guiSP->visual_infoS.green_mask;
blue_mask  = guiSP->visual_infoS.blue_mask;

/* Extract input color components: */
red1   = color1ID & red_mask;
red2   = color2ID & red_mask;
green1 = color1ID & green_mask;
green2 = color2ID & green_mask;
blue1  = color1ID & blue_mask;
blue2  = color2ID & blue_mask;

/* Convert to doubles: */
r1 = (double) red1;
r2 = (double) red2;
g1 = (double) green1;
g2 = (double) green2;
b1 = (double) blue1;
b2 = (double) blue2;

/* Calculate new color components: */
r = w * (r1 + r2);
g = w * (g1 + g2);
b = w * (b1 + b2);
red   = ((unsigned long) r) & red_mask;
green = ((unsigned long) g) & green_mask;
blue  = ((unsigned long) b) & blue_mask;

/* Combine new color components: */
colorID = red | green | blue;

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

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