gfx: LineAA fix typo, reorder code.
[gfxprim.git] / gfxprim_config.py
blob2876af03725229570e425740edcb96cbdead82f0
2 # gfxprim_config.py - module configuring GfxPrim code generation and
3 # known PixelTypes
4 #
7 # 2011 - Tomas Gavenciak <gavento@ucw.cz>
8 # 2011 - Cyril Hrubis <metan@ucw.cz>
10 # This file is sourced by all the generating scripts.
11 # Moreover, the generated files are sourced by almost all Gfxprim sources,
12 # so a complete recompilation is required after any change.
15 # Declared pixel sizes:
16 PS_1BPP_LE = PixelSize(1, bit_endian=LE)
17 PS_1BPP_BE = PixelSize(1, bit_endian=BE)
18 PS_2BPP_LE = PixelSize(2, bit_endian=LE)
19 PS_2BPP_BE = PixelSize(2, bit_endian=BE)
20 PS_4BPP_LE = PixelSize(4, bit_endian=LE)
21 PS_4BPP_BE = PixelSize(4, bit_endian=BE)
22 PS_8BPP = PixelSize(8)
23 PS_16BPP = PixelSize(16)
24 PS_24BPP = PixelSize(24)
25 PS_32BPP = PixelSize(32)
26 # Experimental:
27 PS_18BPP_LE = PixelSize(18, bit_endian=LE)
29 config = GfxPrimConfig(
31 # C name and bit-size of the GP_pixel type
32 pixel_type = "uint32_t",
33 pixel_size = 32,
35 # List of pixel sizes (bpp), explicit on purpose
36 pixelsizes = [PS_1BPP_LE, PS_1BPP_BE, PS_2BPP_LE, PS_2BPP_BE, PS_4BPP_LE, PS_4BPP_BE,
37 PS_8BPP, PS_16BPP, PS_24BPP, PS_32BPP,
38 PS_18BPP_LE,
41 # List of PixelTypes, order defines the numbering.
42 # The "Undefined" type is added automatically.
43 pixeltypes = [
46 # Standard RGB types
49 PixelType(name='xRGB8888', pixelsize=PS_32BPP, chanslist=[
50 ('R', 16, 8),
51 ('G', 8, 8),
52 ('B', 0, 8)]),
54 PixelType(name='RGBA8888', pixelsize=PS_32BPP, chanslist=[
55 ('R', 24, 8),
56 ('G', 16, 8),
57 ('B', 8, 8),
58 ('A', 0, 8)]),
60 PixelType(name='RGB888', pixelsize=PS_24BPP, chanslist=[
61 ('R', 16, 8),
62 ('G', 8, 8),
63 ('B', 0, 8)]),
65 PixelType(name='RGB565', pixelsize=PS_16BPP, chanslist=[
66 ('R', 11, 5),
67 ('G', 5, 6),
68 ('B', 0, 5)]),
70 PixelType(name='RGB666', pixelsize=PS_18BPP_LE, chanslist=[
71 ('R', 12, 6),
72 ('G', 6, 6),
73 ('B', 0, 6)]),
75 PixelType(name='xRGB14666', pixelsize=PS_32BPP, chanslist=[
76 ('R', 12, 6),
77 ('G', 6, 6),
78 ('B', 0, 6)]),
81 # Added for dithering tests
83 PixelType(name='xRGB7333', pixelsize=PS_16BPP, chanslist=[
84 ('R', 6, 3),
85 ('G', 3, 3),
86 ('B', 0, 3)]),
88 # Palette types
90 PixelType(name='P2', pixelsize=PS_2BPP_LE, chanslist=[
91 ('P', 0, 2)]),
93 PixelType(name='P4', pixelsize=PS_4BPP_LE, chanslist=[
94 ('P', 0, 4)]),
96 PixelType(name='P8', pixelsize=PS_8BPP, chanslist=[
97 ('P', 0, 8)]),
100 # Gray-only pixel types
102 PixelType(name='G1', pixelsize=PS_1BPP_LE, chanslist=[
103 ('V', 0, 1)]),
105 PixelType(name='G2', pixelsize=PS_2BPP_LE, chanslist=[
106 ('V', 0, 2)]),
108 PixelType(name='G4', pixelsize=PS_4BPP_LE, chanslist=[
109 ('V', 0, 4)]),
111 PixelType(name='G8', pixelsize=PS_8BPP, chanslist=[
112 ('V', 0, 8)]),
115 # Experiments
118 PixelType(name='VA12', pixelsize=PS_4BPP_BE, chanslist=[
119 ('A', 1, 2),
120 ('V', 3, 1)]),