aboutsummaryrefslogtreecommitdiffstats
path: root/libfonts_get_subpixel_expansion.c
blob: 99f72bab1775d754d104fe6bfae5ef7f75f119eb (plain) (blame)
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
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST


int
libfonts_get_subpixel_expansion(enum libfonts_subpixel_order_class layout, size_t *restrict widthmulp, size_t *restrict heightmulp)
{
	size_t w, h;

	if (layout == LIBFONTS_SUBPIXEL_ORDER_CLASS_123) {
		w = 3;
		h = 1;
	} else if (layout == LIBFONTS_SUBPIXEL_ORDER_CLASS_1_2_3) {
		w = 1;
		h = 3;
	} else if (layout >= LIBFONTS_SUBPIXEL_ORDER_CLASS_11_23 &&
		   layout <= LIBFONTS_SUBPIXEL_ORDER_CLASS_13_12) {
		w = 2;
		h = 2;
	} else if (layout == LIBFONTS_SUBPIXEL_ORDER_CLASS_BALANCED_11_23 ||
		   layout == LIBFONTS_SUBPIXEL_ORDER_CLASS_BALANCED_32_11) {
		w = 2;
		h = 3;
	} else if (layout == LIBFONTS_SUBPIXEL_ORDER_CLASS_BALANCED_21_31 ||
		   layout == LIBFONTS_SUBPIXEL_ORDER_CLASS_BALANCED_13_12) {
		w = 3;
		h = 2;
	} else {
		errno = EINVAL;
		return -1;
	}

	if (widthmulp)
		*widthmulp = w;
	if (heightmulp)
		*heightmulp = h;
	return 0;
}


#else


int
main(void)
{
	return 0;
}


#endif