summaryrefslogtreecommitdiff
path: root/include/blender/color.h
blob: 1fef2cf3e05ac47225cef40fadf939358f7e972b (plain)
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
#ifndef UPEM_MORPHING_COLOR
#define UPEM_MORPHING_COLOR

/**
 * File: color.h
 *
 * See also:
 *   A rainbow
 */

#include <MLV/MLV_color.h>
#include <stdbool.h>

/**
 * Type: ColorComponent
 * Represents a single colour component of 32-bits RGBa tuple.
 */
typedef uint8_t ColorComponent;

/**
 * Type: ColorPixel
 * Represents a single RGBa coloured pixel.
 * Compatible with the libMLV representation.
 */
typedef union {
  struct {
    ColorComponent r, g, b, a;
  } rgba;

  MLV_Color mlv;
} Color;

/**
 * Function: color_equals
 * Compares the supplied colors.
 *
 * Parameters:
 *   c1 - the first color
 *   c2 - the second color
 *
 * Returns:
 *   T(c1 is the same color as c2)
 */
bool color_equals(Color c1, Color c2);

#endif