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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
/*
****************************************************************************
PROJECT : WM driver
FILE : $Id: r_wm_api.h 15479 2018-01-11 14:04:31Z florian.zimmermann $
============================================================================
DESCRIPTION
Driver for the Window Manager
============================================================================
C O P Y R I G H T
============================================================================
Copyright (c) 2016
by
Renesas Electronics (Europe) GmbH.
Arcadiastrasse 10
D-40472 Duesseldorf
Germany
All rights reserved.
============================================================================
DISCLAIMER
LICENSEE has read, understood and accepted the terms and conditions defined in
the license agreement, especially the usage rights. In any case, it is
LICENSEE's responsibility to make sure that any user of the software complies
with the terms and conditions of the signed license agreement.
***************************************************************************
*/
#ifndef R_WM_API_H
#define R_WM_API_H
#include "r_ddb_api.h"
#ifdef __cplusplus
extern "C" {
#endif
/***********************************************************
Title: WM API
WM (Window Manager) API.
WM controls VDCE and SPEA drivers via WM support functions,
and WM doesn't accesses H/W register directly.
An application using Window Manager API should include the following header files.
* r_typedefs.h
* r_ddb_api.h
* r_wm_api.h
* r_cdi_api.h (by default. It can be customiszed. Please see <R_WM_Sys_Heap_Set>.)
*/
/***********************************************************
Constants: API Version
High and Low number of the API version
- R_WM_VERSION_HI
- R_WM_VERSION_LO
*/
#define R_WM_VERSION_HI 1
#define R_WM_VERSION_LO 19
/***********************************************************
Section: Global Types
*/
/***********************************************************
Enum: r_wm_Error_t
Description:
WM driver error code.
If an error occurs these enumerations give information about the
reason.
*/
typedef enum
{
R_WM_ERR_OK = 0,
R_WM_ERR_NG = 1,
R_WM_ERR_RANGE_WM = 2,
R_WM_ERR_PARAM_INCORRECT = 3,
R_WM_UNIT_LOCKED = 4,
R_WM_UNIT_NOTLOCKED = 5,
R_WM_ERR_NO_PHYS_WINDOW = 6,
R_WM_ERR_MALLOC_FAILED = 7,
R_WM_ERR_FREE_FAILED = 8,
R_WM_ERR_EVENT_FAILED = 9,
R_WM_ERR_VOUT = 10,
R_WM_ERR_NOT_DISABLED = 11,
R_WM_ERR_NOT_DELETED = 12,
R_WM_ERR_COLORFMT = 13,
R_WM_ERR_VIN = 14,
R_WM_ERR_NOT_SPRITE_WINDOW = 15,
R_WM_ERR_DISPLAY_TIMING_SET = 16,
R_WM_ERR_INVALID_WM_UNIT = 17,
R_WM_ERR_DEV_DEINIT_FAILED = 18,
R_WM_ERR_NULL_PTR_ARGUMENT = 19,
R_WM_ERR_SPRITE_NOT_FOUND = 20,
R_WM_ERR_SYS_LAYER_INIT_FAILURE = 21,
R_WM_ERR_NOT_CLUT_WIN_FMT = 22,
R_WM_ERR_NO_SUCH_WINDOW = 23,
R_WM_ERR_COULD_NOT_ENABLE_SCREEN = 24,
R_WM_ERR_COULD_NOT_DISABLE_SCREEN = 25,
R_WM_ERR_COULD_NOT_SET_SCREEN_BG_COLOR = 26,
R_WM_ERR_COULD_NOT_REGISTER_EVENT = 27,
R_WM_ERR_NOT_FB_WINDOW = 28,
R_WM_ERR_SYNC_MODE_NOT_POSSIBLE = 29,
R_WM_ERR_SYS_WIN_ALPHA_SET_FAILED = 30,
R_WM_ERR_SYS_WIN_DELETE_ALL_SPRITES_FAILED = 31,
R_WM_ERR_NOT_SUITABLE_CAPTURE_WINDOW = 32,
R_WM_ERR_COULD_NOT_WRITE_MSG_QUEUE = 33,
R_WM_ERR_SYS_CAPTURE_CREATE_FAILED = 34,
R_WM_ERR_SYS_CAPTURE_DELETE_FAILED = 35,
R_WM_ERR_SYS_CAPTURE_ENABLE_FAILED = 36,
R_WM_ERR_CAPTURE_UNIT_COUNT_EXCEEDED = 37,
R_WM_ERR_VOUT_INTERNAL = 38,
R_WM_ERR_SCREEN_TIMING_NOT_SET = 39,
R_WM_ERR_NOT_INITIALIZED = 40,
R_WM_ERR_NOT_UNINITIALIZED = 41,
R_WM_ERR_COLOR_KEYING_NOT_SUPPORTED_FOR_LAYER = 42,
R_WM_ERR_ADDRESS_ALIGNMENT = 43,
R_WM_ERR_DISPLAY_OUTPUT_FORMAT_SET = 44,
R_WM_ERR_SYS_WIN_SWAP_FAILED = 45,
R_WM_ERR_SYS_WIN_DELETE_FAILED = 46,
R_WM_ERR_SYS_WIN_EXTERNAL_BUF_SET_FAILED = 47,
R_WM_ERR_SYS_WIN_CREATE_FAILED = 48,
R_WM_ERR_SYS_WIN_MOVE_FAILED = 49,
R_WM_ERR_SYS_WIN_GEOMETRY_SET_FAILED = 50,
R_WM_ERR_WIN_SWAP_FAILED = 51,
R_WM_ERR_SPEA_INTERNAL = 52,
R_WM_ERR_SYS_WIN_FLAG_UPDATE_FAILED = 53,
R_WM_ERR_COULD_NOT_SET_SCREEN_COLOR_CURVE = 54,
R_WM_ERR_COULD_NOT_SET_SCREEN_GAMMA = 55,
R_WM_ERR_NOT_SUPPORTED = 56,
R_WM_ERR_LAST
} r_wm_Error_t;
/***********************************************************
Enum: r_wm_MsgId_t
Description:
The type is used to specify the messages, which are processed by the window manager.
Members:
see also <r_wm_Msg_t>.
*/
typedef enum
{
R_WM_MSG_SCREEN_ENABLE, /* 0 */
R_WM_MSG_SCREEN_BG_COLOR_SET,
R_WM_MSG_SCREEN_COLOR_CURVE_SET,
R_WM_MSG_SCREEN_GAMMA_SET,
R_WM_MSG_WIN_CREATE, /* 4 */
R_WM_MSG_WIN_DELETE,
R_WM_MSG_WIN_ENABLE,
R_WM_MSG_WIN_MOVE,
R_WM_MSG_WIN_RESIZE,
R_WM_MSG_WIN_COLOR_FMT_SET,
R_WM_MSG_WIN_ALPHA_SET, /* 10 */
R_WM_MSG_WIN_PREMULT_ALPHA_ENABLE,
R_WM_MSG_WIN_CLUT_SET,
R_WM_MSG_WIN_EXTERNAL_BUF_SET,
R_WM_MSG_WIN_COLOR_KEY_ENABLE,
R_WM_MSG_WIN_FLAGS_UPDATE,
R_WM_MSG_WIN_PAINT,
R_WM_MSG_WIN_DELETE_ALL_SPRITES,
R_WM_MSG_WIN_SWAP,
R_WM_MSG_SPRITE_CREATE, /* 19 */
R_WM_MSG_SPRITE_DELETE,
R_WM_MSG_SPRITE_ENABLE,
R_WM_MSG_SPRITE_MOVE,
R_WM_MSG_SPRITE_BUF_SET,
R_WM_MSG_CAPT_CREATE, /* 24 */
R_WM_MSG_CAPT_DELETE,
R_WM_MSG_CAPT_ENABLE,
R_WM_MSG_EOF,
R_WM_MSG_VBLANK,
R_WM_MSG_LAST
} r_wm_MsgId_t;
/***********************************************************
Enum: r_wm_WinMode_t
Description:
A window can be supported by hardware or in can be managed by software;
see also the chapter <WM Window functions>.
A parameter of this type is used by the application to specify,
if it wants to create a window with hardware support,
software support or if the application does not care.
Members:
R_WM_WINMODE_FB - The window is a normal framebuffer window
R_WM_WINMODE_SPRITES - The window is a sprite-hosting window
Note:
this type is not used.
Instead <R_WM_DEV_*> indicates the type of the WM device
*/
typedef enum
{
R_WM_WINMODE_FB,
R_WM_WINMODE_SPRITES
} r_wm_WinMode_t;
/***********************************************************
Enum: r_wm_WinStatus_t
Description:
Each window has a flag specifying its status.
If required, additional status could be added.
Members:
R_WM_WINSTATUS_NOTINITIALIZED - The window has not been created.
R_WM_WINSTATUS_DISABLED - The window is invisible on the screen.
R_WM_WINSTATUS_ENABLED - The window is visible on the screen.
*/
typedef enum
{
R_WM_WINSTATUS_NOT_INITIALIZED = 0,
R_WM_WINSTATUS_DISABLED,
R_WM_WINSTATUS_ENABLED
} r_wm_WinStatus_t;
/***********************************************************
Enum: r_wm_WinBufStatus_t
Description:
A window might have more than one buffer.
For this case there is a status flag for each buffer.
The flag can be used to identify, if a buffer can be used for
drawing operations or if it is ready to be switched to the screen etc.
Members:
R_WM_WINBUF_FREE - The buffer can be used for rendering operations and it is not visible on the screen.
The next free buffer must be requested by <R_WM_WindowNewDrawBufGet>.
R_WM_WINBUF_RENDER_STARTED - Drawing operations have been started on the buffer.
This state of a buffer is switched to R_WM_WINBUF_RENDER_FINISHED
R_WM_WINBUF_RENDER_FINISHED - The drawing operations in the buffer have been completed and the buffer is ready to be displayed.
R_WM_WINBUF_ON_SCREEN - The buffer is scheduled to be transferred to the screen, or it is already on the screen.
*/
typedef enum
{
R_WM_WINBUF_FREE = 0,
R_WM_WINBUF_RENDER_STARTED,
R_WM_WINBUF_RENDER_FINISHED,
R_WM_WINBUF_ON_SCREEN,
} r_wm_WinBufStatus_t;
/***********************************************************
Enum: r_wm_WinBufAllocMode_t
Description:
The buffers can be allocated internally by the WM or externally by the application.
Members:
R_WM_WINBUF_ALLOC_EXTERNAL - The application allocates the buffers. <R_WM_WindowCreate> will not allocate them.
The application does not need to allocate the buffers before it calls <R_WM_WindowCreate>.
The buffers can be set later with <r_wm_WindowExternalBufSet>.
R_WM_WINBUF_ALLOC_INTERNAL - If buffers should be allocated internally by WM then the function <R_WM_WindowCreate>
allocates the buffers and sets the pointer Buffer in <r_wm_Window_t>.
*/
typedef enum
{
R_WM_WINBUF_ALLOC_EXTERNAL,
R_WM_WINBUF_ALLOC_INTERNAL
} r_wm_WinBufAllocMode_t;
/***********************************************************
typedef: r_wm_WinBuffer_t
Description:
The type is used to specify data and status of each frame-buffer of a window.
Struct members:
Data - This pointer specifies the address of the bitmap data.
Status - The parameter specifies the status of the buffer; see also <r_wm_WinBufStatus_t>.
*/
typedef struct
{
void* Data;
r_wm_WinBufStatus_t Status;
} r_wm_WinBuffer_t;
/***********************************************************
Enum: r_wm_WinColorFmt_t
Description:
A parameter of this type specifies the colour mode of a window.
Members:
(A)RGB(w)xyz - The value specifies the number of bits for each colour and the alpha channel.
supported color modes :
(code)
R_WM_COLORFMT_RGB565 16bit rrrrrggggggbbbbb
R_WM_COLORFMT_ARGB1555 16bit arrrrrgggggbbbbb
R_WM_COLORFMT_ARGB4444 16bit aaaarrrrggggbbbb
R_WM_COLORFMT_RGB0444 16bit ----rrrrggggbbbb
R_WM_COLORFMT_RGB0888 32bit --------rrrrrrrrggggggggbbbbbbbb
R_WM_COLORFMT_ARGB8888 32bit aaaaaaaarrrrrrrrggggggggbbbbbbbb
R_WM_COLORFMT_RGBA5551 16bit rrrrrgggggbbbbba
R_WM_COLORFMT_RGBA4444 16bit rrrrggggbbbbaaaa
R_WM_COLORFMT_RGBA8888 32bit rrrrrrrrggggggggbbbbbbbbaaaaaaaa
R_WM_COLORFMT_CLUT8 8 bit 8-bit (256 colors) color-lookup index
R_WM_COLORFMT_CLUT4 4 bit 4-bit (16 colors) color-lookup index
R_WM_COLORFMT_CLUT1 1 bit 1-bit (2 colors) color lookup index
R_WM_COLORFMT_RLE24ARGB8888,
R_WM_COLORFMT_RLE18ARGB8888,
R_WM_COLORFMT_RLE24RGB0888,
R_WM_COLORFMT_RLE18RGB0888,
R_WM_COLORFMT_RLE8CLUT8,
R_WM_COLORFMT_RLE8CLUT4,
R_WM_COLORFMT_RLE8CLUT1,
In digital domain, YUV is named YCbCr
R_WM_COLORFMT_YCBCR_444, 32bit --------vvvvvvvvyyyyyyyyuuuuuuuu
Due to chroma subsampling, two pixels share their u and v data
32bit |<- pixel 2 ->|<- pixel 1 ->|
R_WM_COLORFMT_YCBCR_422, 16bit uuuuuuuuyyyyyyyy vvvvvvvvyyyyyyyy
R_WM_COLORFMT_YUV_YUYV, 16bit vvvvvvvvyyyyyyyy uuuuuuuuyyyyyyyy YCbCr 422 mode, variation
R_WM_COLORFMT_YUV_UYVY, 16bit yyyyyyyyvvvvvvvv yyyyyyyyuuuuuuuu YCbCr 422 mode, variation
R_WM_COLORFMT_YUV_YVYU, 16bit uuuuuuuuyyyyyyyy vvvvvvvvyyyyyyyy YCbCr 422 mode, equal to YCBCR_422
R_WM_COLORFMT_YUV_VYUY, 16bit yyyyyyyyuuuuuuuu yyyyyyyyvvvvvvvv YCbCr 422 mode, variation
(end)
Note:
Not all displays support all formats.
*/
typedef enum
{
R_WM_COLORFMT_RGB565,
R_WM_COLORFMT_ARGB1555,
R_WM_COLORFMT_ARGB4444,
R_WM_COLORFMT_RGB0444,
R_WM_COLORFMT_RGB0888,
R_WM_COLORFMT_ARGB8888,
R_WM_COLORFMT_RGBA5551,
R_WM_COLORFMT_RGBA4444,
R_WM_COLORFMT_RGBA8888,
R_WM_COLORFMT_CLUT8,
R_WM_COLORFMT_CLUT4,
R_WM_COLORFMT_CLUT1,
R_WM_COLORFMT_RLE24ARGB8888,
R_WM_COLORFMT_RLE18ARGB8888,
R_WM_COLORFMT_RLE24RGB0888,
R_WM_COLORFMT_RLE18RGB0888,
R_WM_COLORFMT_RLE8CLUT8,
R_WM_COLORFMT_RLE8CLUT4,
R_WM_COLORFMT_RLE8CLUT1,
R_WM_COLORFMT_YCBCR_422,
R_WM_COLORFMT_YCBCR_444,
R_WM_COLORFMT_YUV_YUYV,
R_WM_COLORFMT_YUV_UYVY,
R_WM_COLORFMT_YUV_YVYU,
R_WM_COLORFMT_YUV_VYUY,
R_WM_COLORFMT_LAST
} r_wm_WinColorFmt_t;
/***********************************************************
Enum: r_wm_OutColorFmt_t
Description:
A parameter of this type specifies the colour mode of the video output.
Members:
(A)RGB(w)xyz - The value specifies the number of bits for each colour.
supported color modes :
(code)
R_WM_OUTCOLORFMT_RGB888 24bit rrrrrrrrggggggggbbbbbbbb
R_WM_OUTCOLORFMT_RGB666 18bit ------rrrrrrggggggbbbbbb
R_WM_OUTCOLORFMT_RGB565 16bit --------rrrrrggggggbbbbb
(end)
***Documentation of flags it subject to be moved to system-specific implementation***
supported flags :
R_WM_OUTCOLORFMT_FLAG_ENDIAN change endianess of output colour
R_WM_OUTCOLORFMT_FLAG_SWAP_BR swap blue and red channel of output color
R_WM_OUTCOLORFMT_FLAG_DITHER activate dithering applied to output colour
Result of flags is shown as example for RGB666.
(code)
MSB LSB
R_WM_OUTCOLORFMT_FLAG_ENDIAN ------ rrrrrr gggggg bbbbbb
FLAG=0: ------ 765432 765432 765432
FLAG=1: ------ 234567 234567 234567
MSB LSB
R_WM_OUTCOLORFMT_FLAG_SWAP_BR ------ rrrrrr gggggg bbbbbb
FLAG=0: ------ hgfedc ba9876 543210
FLAG=1: ------ 543210 ba9876 hgfedc
(end)
Note:
Not all displays support all formats.
*/
typedef enum
{
R_WM_OUTCOLORFMT_RGB888 = 0u,
R_WM_OUTCOLORFMT_RGB666 = 1u,
R_WM_OUTCOLORFMT_RGB565 = 2u,
R_WM_OUTCOLORFMT_LAST = 3u,
/* Documentation of flags is subject to be moved to system-specific implementation */
R_WM_OUTCOLORFMT_FLAG_DITHER = (uint32_t) 1u << 28u,
R_WM_OUTCOLORFMT_FLAG_SWAP_BR = (uint32_t) 1u << 29u,
R_WM_OUTCOLORFMT_FLAG_ENDIAN = (uint32_t) 1u << 30u,
/* We do not use the 31th bit if not needed. Saves some signedness castings */
R_WM_OUTCOLORFMT_FLAG_MASK = (R_WM_OUTCOLORFMT_FLAG_ENDIAN
+ R_WM_OUTCOLORFMT_FLAG_SWAP_BR
+ R_WM_OUTCOLORFMT_FLAG_DITHER),
} r_wm_OutColorFmt_t;
/***********************************************************
typedef: r_wm_ClutEntry_t
Description:
Defines an entry of the colour lookup table.
Struct members:
B - 8-bit blue component
G - 8-bit green component
R - 8-bit red component
A - 8-bit alpha component
*/
typedef struct
{
uint8_t B;
uint8_t G;
uint8_t R;
uint8_t A;
} r_wm_ClutEntry_t;
/***********************************************************
typedef: r_wm_Window_s
forward declaration for <r_wm_Window_t>
*/
typedef struct r_wm_Window_s r_wm_Window_t; /* need forward declaration here */
/***********************************************************
Enum: r_wm_SpriteStatus_t
Description:
Describes the state of the sprite. If the sprite is not assigned to any window, it will have a
R_WM_SPRITESTATUS_NOT_INITIALIZED value. If it is assigned, it can have either R_WM_SPRITESTATUS_DISABLED
(not visible) or R_WM_SPRITESTATUS_ENABLED (visible) state set.
Members:
*/
typedef enum
{
R_WM_SPRITESTATUS_NOT_INITIALIZED = 0,
R_WM_SPRITESTATUS_DISABLED,
R_WM_SPRITESTATUS_ENABLED
} r_wm_SpriteStatus_t;
/***********************************************************
typedef: r_wm_Sprite_t
Description:
Each sprite has a data structure of this type. All sprites are linked in a queue by the window manager.
Members:
Window - pointer to the parent window
Next - *internal* pointer to the next sprite in the queue
Status - status of the sprite
Data - pointer to the image data of a sprite
PosX / PosY / PosZ - position of the sprite on the window
Width / Height - size of the sprite
*/
typedef struct r_wm_Sprite_s
{
struct r_wm_Window_s *Window;
struct r_wm_Sprite_s *Next;
r_wm_SpriteStatus_t Status;
void *Data;
uint32_t PosX;
uint32_t PosY;
uint32_t PosZ;
uint32_t Width;
uint32_t Height;
} r_wm_Sprite_t;
/***********************************************************
Enum: r_wm_WinFlags_t
Description:
On/Off Switches for different functionalities of a WM window.
Members:
R_WM_WINFLAG_V_MIRROR - Flip the output image vertically
*/
typedef enum
{
R_WM_WINFLAG_NONE = 0,
R_WM_WINFLAG_V_MIRROR = 1,
R_WM_WINFLAG_MASK = (R_WM_WINFLAG_V_MIRROR),
} r_wm_WinFlags_t;
/***********************************************************
typedef: r_wm_Window_t
Description:
Each window has a data structure of this type.
All windows are linked in a chain by the window manager.
Initialization instructions:
It is required to clear the memory of <r_wm_Window_t> to zero.
The following variables need to be initialised to any valid value (including zero)
before calling <R_WM_WindowCreate>. This is already covered by clearing everything to zero.
PosX
PosY
PosZ
ScaledWidth
ScaledHeight
UsePremultipliedAlpha
ClutNumEntries
ColorKey.Enabled
The following varibales need use-case specific setup before calling R_WM_WindowCreate
Mode
ColorFmt
Pitch
Width
Height
Surface.Fb.BufNum (if Mode is R_WM_WINMODE_FB)
Surface.Fb.BufMode (if Mode is R_WM_WINMODE_FB)
Surface.Fb.Buffer (if Mode is R_WM_WINMODE_FB and BufMode is R_WM_WINBUF_ALLOC_EXTERNAL)
Alpha
ClutNumEntries (if ColorFmt is a CLUT format)
Clut (if ColorFmt is a CLUT format)
The following variables are set by <R_WM_WindowCreate>, so initialization value is not important
Status
Surface.SpritesRoot (if Mode is R_WM_WINMODE_SPRITES)
Next
Struct members:
Status - The element keeps the status of the window; see <r_wm_WinStatus_t>.
Mode - See description of <r_wm_WinMode_t>.
ColorFmt - The member specifies the color mode of the window; see <r_wm_WinColorFmt_t>.
PosX / PosY - These parameters specify the position of the window on the screen.
PosZ - This parameter specifies the Z position of the window.
Pitch - This is the line pitch of a frame buffer. It must be greater or equal Width.
Width / Height - These values are the size of the window.
ScaledWidth / ScaledHeight - These values are the scaled size of the window.
[used when Mode == R_WM_WINMODE_FB]
Surface.Fb.Buffer - This is a pointer to an array of BufNum <r_wm_WinBuffer_t> elements. The array contains information about all frame buffers of the window.
Surface.Fb.BufNum - This is the number of frame buffers of the window.
Surface.Fb.BufMode - Buffer allocation mode; see <r_wm_WinBufAllocMode_t>
[used when Mode == R_WM_WINMODE_SPRITES]
Surface.SpritesRoot - *internal* pointer used to store the Sprite List assigned to this window
Alpha - The parameter specifies the transparency value of the window.
UsePremultipliedAlpha - Premultiplied Alpha Mode is active
[used when ColorFmt == R_WM_COLORFMT_CLUT* ]
ClutNumEntries - No of entries of the CLUT assigned to this window
Clut - Pointer to array of CLUT entries
[Color Keying. This feature cannot be used together with the Window's <Alpha>]
[used when <ColorFmt> is an RGB Format ]
ColorKey.In.RgbKey - The key color for the RGBA color keying
[used when <ColorFmt> == R_WM_COLORFMT_CLUT* ]
ColorKey.In.ClutKey - The key color for the color indexed color keying
ColorKey.Out - The 'In' key color gets substituted with the 'Out' color defined here).
Flags - Additional flags to set certain properties of a window.
Next - *internal* pointer to the next window in the chain.
*/
struct r_wm_Window_s
{
r_wm_WinStatus_t Status;
r_wm_WinMode_t Mode;
r_wm_WinColorFmt_t ColorFmt;
int32_t PosX;
int32_t PosY;
uint32_t PosZ;
uint32_t Pitch;
uint32_t Width;
uint32_t Height;
uint32_t ScaledWidth;
uint32_t ScaledHeight;
union
{
struct
{
r_wm_WinBuffer_t *Buffer;
uint8_t BufNum;
r_wm_WinBufAllocMode_t BufMode;
} Fb;
r_wm_Sprite_t *SpritesRoot;
} Surface;
uint8_t Alpha;
uint8_t UsePremultipliedAlpha;
uint32_t ClutNumEntries;
const r_wm_ClutEntry_t* Clut;
struct
{
uint8_t Enabled;
union
{
struct
{
uint8_t Red;
uint8_t Green;
uint8_t Blue;
} RgbKey;
uint8_t ClutKey;
} In;
struct
{
uint8_t Red;
uint8_t Green;
uint8_t Blue;
uint8_t Alpha;
} Out;
} ColorKey;
r_wm_WinFlags_t Flags;
struct r_wm_Window_s *Next; /*internal*/
} /*r_wm_Window_t*/;
typedef struct
{
uint32_t Enabled;
} r_wm_MsgScreenEnable_t;
typedef struct
{
uint8_t Red;
uint8_t Green;
uint8_t Blue;
} r_wm_MsgScreenBgColorSet_t;
typedef struct
{
uint32_t NumEntries;
const r_wm_ClutEntry_t *ColorCurve;
} r_wm_MsgScreenColorCurveSet_t;
typedef struct
{
uint8_t GammaRed;
uint8_t GammaGreen;
uint8_t GammaBlue;
} r_wm_MsgScreenGammaSet_t;
typedef struct
{
r_wm_Window_t *Win;
} r_wm_MsgWinCreateData_t;
typedef struct
{
r_wm_Window_t *Win;
} r_wm_MsgWinDeleteData_t;
typedef struct
{
r_wm_Window_t *Win;
uint32_t Enabled;
} r_wm_MsgWinEnableData_t;
typedef struct
{
r_wm_Window_t *Win;
int32_t PosX;
int32_t PosY;
int32_t PosZ;
} r_wm_MsgWinMoveData_t;
typedef struct
{
r_wm_Window_t *Win;
uint32_t Pitch;
uint32_t Width;
uint32_t Height;
} r_wm_MsgWinResizeData_t;
typedef struct
{
r_wm_Window_t *Win;
r_wm_WinColorFmt_t ColorFmt;
} r_wm_MsgWinColorFmtSet_t;
typedef struct
{
r_wm_Window_t *Win;
uint8_t Alpha;
} r_wm_MsgWinAlphaData_t;
typedef struct
{
r_wm_Window_t *Win;
uint8_t Enabled;
} r_wm_MsgWinPremultAlphaEnableData_t;
typedef struct
{
r_wm_Window_t *Win;
r_wm_WinBuffer_t *Buf;
uint32_t BufNum;
r_wm_WinColorFmt_t ColorFormat;
} r_wm_MsgWinExternalBufSetData_t;
typedef struct
{
r_wm_Window_t *Win;
r_wm_Sprite_t *Sprite;
} r_wm_MsgWinSpriteData_t;
typedef struct
{
r_wm_Window_t *Win;
uint32_t NumEntries;
const r_wm_ClutEntry_t *Clut;
} r_wm_MsgWinClutSetData_t;
typedef struct
{
r_wm_Window_t *Win;
uint32_t Enabled;
} r_wm_MsgWinColorKeyEnableData_t;
typedef struct
{
r_wm_Window_t *Win;
r_wm_WinFlags_t SetFlags;
r_wm_WinFlags_t ClearFlags;
} r_wm_MsgWinFlagsUpdateData_t;
typedef struct
{
r_wm_Window_t *Win;
} r_wm_MsgWinPaintData_t;
typedef struct
{
r_wm_Window_t *Win;
} r_wm_MsgWinSwapData_t;
typedef struct
{
r_wm_Window_t *Win;
} r_wm_MsgWinDeleteAllSprites_t;
typedef struct
{
r_wm_Window_t *Win;
} r_wm_MsgSwapData_t;
typedef struct
{
uint32_t Id;
} r_wm_MsgEofData_t;
typedef struct
{
r_wm_Sprite_t *Sprite;
} r_wm_MsgSpriteCreateData_t;
typedef struct
{
r_wm_Sprite_t *Sprite;
} r_wm_MsgSpriteDeleteData_t;
typedef struct
{
r_wm_Sprite_t *Sprite;
uint32_t Enabled;
} r_wm_MsgSpriteEnableData_t;
typedef struct
{
r_wm_Sprite_t *Sprite;
uint32_t PosX;
uint32_t PosY;
uint32_t PosZ;
} r_wm_MsgSpriteMoveData_t;
typedef struct
{
r_wm_Sprite_t *Sprite;
void *Buf;
} r_wm_MsgSpriteBufSetData_t;
typedef struct r_wm_Capture_s r_wm_Capture_t;
typedef struct
{
r_wm_Capture_t *Capt;
} r_wm_MsgCaptCreateData_t;
typedef struct
{
r_wm_Capture_t *Capt;
} r_wm_MsgCaptDeleteData_t;
typedef struct
{
r_wm_Capture_t *Capt;
uint32_t Enabled;
} r_wm_MsgCaptEnableData_t;
typedef union
{
r_wm_MsgScreenEnable_t ScrEnable;
r_wm_MsgScreenBgColorSet_t ScrBgColorSet;
r_wm_MsgScreenColorCurveSet_t ScrColorCurveSet;
r_wm_MsgScreenGammaSet_t ScrGammaSet;
r_wm_MsgWinCreateData_t WinCreate;
r_wm_MsgWinDeleteData_t WinDelete;
r_wm_MsgWinEnableData_t WinEnable;
r_wm_MsgWinMoveData_t WinMove;
r_wm_MsgWinResizeData_t WinResize;
r_wm_MsgWinAlphaData_t WinAlphaSet;
r_wm_MsgWinPremultAlphaEnableData_t WinPremultAlphaEnable;
r_wm_MsgWinSpriteData_t WinSprite;
r_wm_MsgWinClutSetData_t WinClutSet;
r_wm_MsgWinColorFmtSet_t WinColorFmtSet;
r_wm_MsgWinFlagsUpdateData_t WinFlags;
r_wm_MsgWinPaintData_t WinPaint;
r_wm_MsgWinSwapData_t WinSwap;
r_wm_MsgWinExternalBufSetData_t WinExternalBufSet;
r_wm_MsgWinColorKeyEnableData_t WinColorKeyEnable;
r_wm_MsgWinDeleteAllSprites_t WinDeleteAllSprites;
r_wm_MsgSpriteCreateData_t SpriteCreate;
r_wm_MsgSpriteDeleteData_t SpriteDelete;
r_wm_MsgSpriteEnableData_t SpriteEnable;
r_wm_MsgSpriteMoveData_t SpriteMove;
r_wm_MsgSpriteBufSetData_t SpriteBufSet;
r_wm_MsgCaptCreateData_t CaptCreate;
r_wm_MsgCaptDeleteData_t CaptDelete;
r_wm_MsgCaptEnableData_t CaptEnable;
r_wm_MsgSwapData_t Swap;
r_wm_MsgEofData_t Eof;
} r_wm_MsgGenericData;
/***********************************************************
typedef: r_wm_Msg_t
Description:
The window manager stores all requests in an internal msg queue.
During initialization the application provides an array of
<r_wm_Msg_t>, which the driver will use as a msg queue storage.
Struct members:
Id - See <r_wm_MsgId_t>.
Data - A union to hold event specific data.
*/
typedef struct r_wm_Msg_s r_wm_Msg_t;
struct r_wm_Msg_s
{
r_wm_MsgId_t Id;
r_wm_MsgGenericData Data;
};
/***********************************************************
typedef: r_wm_EventId_t
Description:
External event id. The events are dispatched to the callback function specified
during the R_WM_DevInit call. These events can be used for implementing the asynchronous
drawing mechanism (see the appropriate application note).
R_WM_EVENT_VBLANK = VBLANK interrupt notification
R_WM_EVENT_SCANLINE = SCANLINE interrupt notification
R_WM_EVENT_VI_VBLANK = Video Input VBLANK interrupt notification
R_WM_EVENT_VI_OVERFLOW = Video Input overflow interupt notification
R_WM_EVENT_LAYER0_UNDERFLOW = Video output layer 0 undeflow
R_WM_EVENT_LAYER1_UNDERFLOW = Video output layer 1 undeflow
R_WM_EVENT_LAYER2_UNDERFLOW = Video output layer 2 undeflow
R_WM_EVENT_LAYER3_UNDERFLOW = Video output layer 3 undeflow
*/
typedef enum
{
R_WM_EVENT_VBLANK = 0x0,
R_WM_EVENT_SCANLINE = 0x1,
R_WM_EVENT_VI_VBLANK = 0x2,
R_WM_EVENT_VI_OVERFLOW = 0x3,
R_WM_EVENT_LAYER0_UNDERFLOW = 0x4,
R_WM_EVENT_LAYER1_UNDERFLOW = 0x5,
R_WM_EVENT_LAYER2_UNDERFLOW = 0x6,
R_WM_EVENT_LAYER3_UNDERFLOW = 0x7,
R_WM_EVENT_LAST
} r_wm_EventId_t;
/***********************************************************
typedef: r_wm_Event_t
Description:
The external event description. The events are dispatched to the callback function specified
during the R_WM_DevInit call. These events can be used for implementing the asynchronous
drawing mechanism (see the appropriate application note).
Member:
Id - Event ID
Data - Data associated with the event
*/
typedef struct
{
r_wm_EventId_t Id;
uint32_t Data;
} r_wm_Event_t;
/***********************************************************
Enum: r_wm_Memory_t
Description:
The window manager requires different access types to the memory.
Therefore the function R_WM_SysAlloc is called with a parameter,
which indicates the memory type requested by the window manager.
Members:
R_WM_MEM_CPU - The memory needs to be accessible by the CPU.
R_WM_MEM_VIDEO - It has to be possible to access the memory by the VOUT, VIN, GPU and CPU.
*/
typedef enum
{
R_WM_MEM_CPU = 0,
R_WM_MEM_VIDEO,
} r_wm_Memory_t;
/***********************************************************
typedef: r_wm_CapMode_t
Description:
There are different modes of video capturing, especially for interlaced videos.
This type is used to describe, which method shall be used for a capturing surface.
Members:
One of these six flags must be selected or the function call will fail :
R_WM_CAPMODE_YUV_ITU656 - Select YUV itu 656 mode
R_WM_CAPMODE_YUV_8BIT - Select YUV raw 8bit mode with external sync
R_WM_CAPMODE_YUV_16BIT - Select YUV raw 16bit mode with external sync
R_WM_CAPMODE_RGB_16BPP - Select RGB 565 bit mode with external sync
R_WM_CAPMODE_RGB_18BPP - Select RGB 666 bit mode with external sync
R_WM_CAPMODE_RGB_24BPP - Select RGB 888 bit mode with external sync
The following flags are optional and can be omitted :
Dithering can be used with framebuffer format R_VI_FB_FORMAT_RGB565.
Dithering is disabled on default and can be enabled with one of the following flags.
If none of these is selected dithering is disabled :
R_WM_CAPMODE_DITHER - Enable dithering
some additional flags can be used :
R_WM_CAPMODE_YUV_Y_UV_INVERT - Invert the position of Y and UV in the ITU stream (YUYV -> UYVY)
R_WM_CAPMODE_VSYNC_INVERT - Invert the polarity of the incoming vsync signals
R_WM_CAPMODE_HSYNC_INVERT - Invert the polarity of the incoming vsync signals
R_WM_CAPMODE_DATA_CLK_INVERT - Data sampling point
R_WM_CAPMODE_VSYNC_CLK_INVERT - vsync sampling point
R_WM_CAPMODE_HSYNC_CLK_INVERT - hsync sampling point
R_WM_CAPMODE_FIXED_VSYNC - Video Output VSYNC is fixed to internal pixel clock.
Data can be captured using CSync, HSync/VSync or Data Enable Sync.
If none of the following flags is set then HSync/VSync is used.
Default capture mode does not use deinterlacing.
If interlaced video is input, this equals to BOB deinterlacing.
Set flag below for weave deinterlacing.
R_WM_CAPMODE_WEAVE - The weave method is used to deinterlace the video.
Only one single input buffer video is supported, no multi-buffering.
*/
typedef enum
{
R_WM_CAPMODE_NONE = 0,
R_WM_CAPMODE_YUV_ITU656 = (int32_t)(1uL << 0),
R_WM_CAPMODE_YUV_8BIT = (int32_t)(1uL << 1),
R_WM_CAPMODE_YUV_16BIT = (int32_t)(1uL << 2),
R_WM_CAPMODE_RGB_16BPP = (int32_t)(1uL << 3),
R_WM_CAPMODE_RGB_18BPP = (int32_t)(1uL << 4),
R_WM_CAPMODE_RGB_24BPP = (int32_t)(1uL << 5),
R_WM_CAPMODE_DITHER = (int32_t)(1uL << 6),
/* default Y1UY2V, inverted UY1VY2 */
R_WM_CAPMODE_YUV_Y_UV_INVERT = (int32_t)(1uL << 10),
/* vsync polarity (default: pos polarity, inverted: neg polarity) */
R_WM_CAPMODE_VSYNC_INVERT = (int32_t)(1uL << 11),
/* hsync polarity (default: pos polarity, inverted: neg polarity) */
R_WM_CAPMODE_HSYNC_INVERT = (int32_t)(1uL << 12),
/* data sampling point (default: falling clock edge, inverted: rising clock edge) */
R_WM_CAPMODE_DATA_CLK_INVERT = (int32_t)(1uL << 15),
/* vsync sampling point (default: falling clock edge, inverted: rising clock edge) */
R_WM_CAPMODE_VSYNC_CLK_INVERT = (int32_t)(1uL << 16),
/* hsync sampling point (default: falling clock edge, inverted: rising clock edge) */
R_WM_CAPMODE_HSYNC_CLK_INVERT = (int32_t)(1uL << 17),
R_WM_CAPMODE_H_MIRRORING = (int32_t)(1uL << 18),
R_WM_CAPMODE_V_MIRRORING = (int32_t)(1uL << 19),
/* internal fixed vsync generation (default: vo vsync is synchronised to vi vsync) */
R_WM_CAPMODE_FIXED_VSYNC = (int32_t)(1uL << 20),
/* Bits 0-20 mirror the VDCE data type <r_vdce_CapMode_t>.
The following entries are additional. */
R_WM_CAPMODE_WEAVE = (int32_t)(1ul << 30),
} r_wm_CapMode_t;
/***********************************************************
typedef: r_wm_Capture_t
Description:
The type describes the settings of a video capturing surface.
The video capturing surface is always associated with a window surface.
Members:
Window - The member is a pointer to the associated window.
The window has to match the requirements of the captured video;
e.g. size, colour mode.
Mode - The member specifies the capturing mode.
Status - see <R_WM_WinStatus_t>
StartX - This is the X starting position in the video.
StrideX - The parameter specifies the stride in the frame buffer.
StartY1 / StartY2 - This is the Y starting position for the field 1 and field 2.
Width / Height - This is the size of the video.
ScaledWidth/Height - The target window will be scaled.
<ScaledWidth/-Height> will be the dimensions of the buffer in memory.
<Width/Height> will be the dimension of the window on-screen.
D1x/VDCE Specific: Only upscaling is supported, thus ScaledWidth/Height < Width/Height.
Delay - When VI- and VO-VSYNC are synchronized, this value delays VO-VSYNC measured in lines.
CapUnit - The Video Channel to be used for capturing.
If another Unit is to be used than the assigned Window,
please make sure that this unit is already initialised.
Next - *internal* All capturing surfaces are linked in a list.
This pointer points to the next capturing surface.
*/
struct r_wm_Capture_s
{
r_wm_Window_t *Window;
r_wm_CapMode_t Mode;
uint32_t StartX;
uint32_t StrideX;
uint32_t StartY1;
uint32_t StartY2;
uint32_t Width;
uint32_t Height;
uint32_t ScaledWidth;
uint32_t ScaledHeight;
uint32_t Delay;
uint32_t CapUnit;
struct r_wm_Capture_s *Next;
};
/***********************************************************
typedef: r_wm_WinCapbs_t
Description:
D1M1A only.
For other devices, this is fixed to:
0: RLE
1: SPRITES
2: SPRITES
3: SPRITES
Please see API documentation of function <R_WM_WindowCapabilitiesSet>.
Members:
R_WM_WINCAPBS_RLE - Set video output layer to support RLE format.
R_WM_WINCAPBS_SPRITES - Set video output layer to support SPRITES.
*/
typedef enum
{
R_WM_WINCAPBS_RLE = 0,
R_WM_WINCAPBS_SPRITES = 1,
R_WM_WINCAPBS_LAST = 2,
} r_wm_WinCapbs_t;
/***********************************************************
Section: Global API functions
*/
/***********************************************************
Group: Device
The section describes driver functions,
which are required for general use of the driver,
but which are related to a specific functionality of the macro itself.
*/
/***********************************************************
Function: R_WM_DevInit
Init WM unit.
Description:
This function initializes the driver and the hardware as far as necessary.
The driver makes sure, that the macro is set into a default configuration.
It is also in the responsibility of the driver to keep track of the macro
instance status and to avoid, that the macro instance is initialized more
than one time or that any other function can be executed before the
initialization has been completed successfully.
Parameter:
Unit - The parameter specifies the screen number
The window manager can support more than one physical screen
Valid values are defined by <R_WM_DEV_*>
The number of valid devices is <R_WM_DEV_NUM>
MsgQueue - This is a pointer to Size elements of the <R_WM_Msg_t> type
The array is used by the window manager to store the window manager requests
Size - The number specified the number of elements in the message queue
EventCb - External event notification callback function
CpuHeap - Pointer to your managed cpu heap
VidHeap - Pointer to your managed video heap
Return value:
See <R_WM_Error_t>.
*/
r_wm_Error_t R_WM_DevInit ( uint32_t Unit,
r_wm_Msg_t *MsgQueue,
uint32_t Size,
void(*EventCb)(uint32_t Unit, const r_wm_Event_t *Event),
const void *CpuHeap,
const void *VidHeap
);
/***********************************************************
Function: R_WM_DevEventRegister
Description:
Register for retrieving the notification on an event.
Only the external events registered with this function will
be received by the device callback function.
Parameter:
Unit - See description of <R_WM_DevInit>
EventId - The ID of the event to be registered for receiving
Arg - Generic argument if applicable
Generic argument values:
R_WM_EVENT_VBLANK - any (ignored)
R_WM_EVENT_SCANLINE - scan line number on which the interrupt will trigger
*/
r_wm_Error_t R_WM_DevEventRegister ( uint32_t Unit,
r_wm_EventId_t EventId,
uint32_t Arg
);
/***********************************************************
Function: R_WM_DevDeinit
DeInit WM unit.
Description:
This function deinitializes the driver and the hardware.
In case the function is called for an instance of the macro,
which has not been initialized before, the function shall return an error.
Parameter:
Unit - See description of <R_WM_DevInit>
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_DevDeinit(uint32_t Unit);
/***********************************************************
Function: R_WM_DevInfoGet
Description:
Get information of screen and window parameters.
Parameter:
Unit - See description of <R_WM_DevInit>
LayerNum - pointer to a variable to return number of usable layers
PitchMax - pointer to a variable to return maximum pitch of a layer. If 0 is returned then a pitch is not supported.
WidthMax - pointer to a variable to return maximum width of a layer
HeightMax - pointer to a variable to return maximum height of a layer
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_DevInfoGet ( uint32_t Unit,
uint32_t *LayerNum,
uint32_t *PitchMax,
uint32_t *WidthMax,
uint32_t *HeightMax
);
/***********************************************************
Function: R_WM_GetVersionString
Returns:
version string of this WM driver
*/
const int8_t *R_WM_GetVersionString(void);
/***********************************************************
Group: Screen
A screen is a physical video output unit.
There is no frame-buffer associated with a screen,
but a screen might have a background color.
*/
/***********************************************************
Function: R_WM_ScreenTimingSet
Description:
Create a screen on the specified video output.
The new values will be active after placing a call to <R_WM_ScreenEnable>
into the message queue and executing this part of the queue.
Parameter:
Unit - See description of <R_WM_DevInit>
Timing - The timing parameter contains all the information
to drive the display see the description of <r_ddb_Timing_t> for details.
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_ScreenTimingSet ( uint32_t Unit,
r_ddb_Timing_t *Timing
);
/***********************************************************
Function: R_WM_ScreenTimingSetByName
Description:
Create a screen on the specified video output.
The new values will be active after placing a call to <R_WM_ScreenEnable>
into the message queue and executing this part of the queue.
Parameter:
Unit - See description of <R_WM_DevInit>
Name - The name is an identifier, which is used to lookup
for the correct screen timing in the display data base (see: <r_ddb_Timing_t>).
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_ScreenTimingSetByName ( uint32_t Unit,
const int8_t *Name
);
/***********************************************************
Function: R_WM_ScreenColorFormatSet
Description:
Set the color format for the signals of the specified video output.
Default format for the video output is RGB888.
Parameter:
Unit - See description of <R_WM_DevInit>
OutFmt - A color format of <r_wm_OutColorFmt_t> plus optional bit flags.
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_ScreenColorFormatSet ( uint32_t Unit,
r_wm_OutColorFmt_t OutFmt
);
/***********************************************************
Function: R_WM_ScreenBgColorSet
Description:
Set the screen background color that is seen, if no window
(or a transparent one) is on top of it.
If the selected screen does not support a background color,
the function will return with an error.
Parameter:
Unit - See description of <R_WM_DevInit>
Red/Green/Blue - The individual color components of the background color.
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_ScreenBgColorSet ( uint32_t Unit,
uint8_t Red,
uint8_t Green,
uint8_t Blue
);
/***********************************************************
Function: R_WM_ScreenColorCurveSet
Description:
Set a curve to be used as custom gamma or color correction curve.
Using this curve, each RGB color channel is individually corrected according
to the given curve.
For the correction in D1x/VDCE, the incoming color information of each channel
is split into 32 equally sized segments each covering a range 8 color values.
For each of these 8 values in a segment, the same gain factor applies.
To configure the segments, a start and an end value need to be given.
This requires 33 RGB reference points to be passed to this function.
For each segment of each color, the gain factor must be in range [0.0 .. +2.0],
thus the values between two reference points may have a difference in range of [0 .. +16].
The origin is always at point zero: In = Out = RGB(0,0,0).
The slope is always positive.
If any value except [0] exceeds above limitation, the curve will be approximated
as close as possible while staying within the HW limitations.
The reference points are defined as RGB values which define the color output expected
for that certain reference point.
E.g.
Reference point 1 defines the desired RGB output color for the input color RGB(8,8,8).
Reference point 3 defines the desired RGB output color for the input color RGB(24,24,24).
This function will overwrite the settings of <R_WM_ScreenGammaSet>.
Parameter:
Unit - See description of <R_WM_DevInit>
NumEntries - Number of reference points
Clut - Pointer to Table of reference points <r_wm_ClutEntry_t>.
ALPHA value of data type is unused!
Note: The data pointed to by the pointer <ColorCurve> must be available
until the message queue containing this command has been processed.
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_ScreenColorCurveSet ( uint32_t Unit,
uint32_t NumEntries,
const r_wm_ClutEntry_t *ColorCurve
);
/***************************************************************************
Function: R_WM_ScreenGammaSet
Description:
This function sets the output gamma correction.
This function will overwrite the settings of <R_WM_ScreenColorCurveSet>.
Also for Gamma Correction Curves, the slope is limited to the range [0.0 .. +2.0]
as described above in <R_WM_ScreenColorCurveSet>.
If parts of the Gamma Curve exceed this range, this function will choose
the closest match based on the given limitations.
Parameter:
Unit - See description of <R_WM_DevInit>
Gamma - Gamma correction factor (0..255 => 0.25..2.0, 128=1.0)
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_ScreenGammaSet ( uint32_t Unit,
const uint8_t GammaRed,
const uint8_t GammaGreen,
const uint8_t GammaBlue
);
/***********************************************************
Function: R_WM_ScreenEnable
Description:
Switch on the display.
Parameter:
Unit - See description of <R_WM_DevInit>
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_ScreenEnable(uint32_t Unit);
/***********************************************************
Function: R_WM_ScreenDisable
Description:
Switch off the display.
Parameter:
Unit - See description of <R_WM_DevInit>
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_ScreenDisable(uint32_t Unit);
/***********************************************************
Group: Windows
Description:
A window is an area with graphical content, which is placed
on a screen.
Windows may cover the whole screen, but they could also cover
part of the screen only.
It is possible to stack windows and to define transparency
for a window.
If overlapping windows have the same Z position, it is not
defined, which window will be on the top.
A video output can have hardware support for windows (e.g.
hardware layers).
Note:
If an OS is used the Window functions internally use semaphores.
This must be taken into account if they are called by an interrupt service routine.
*/
/***********************************************************
Function: R_WM_WindowCapabilitiesSet
Description:
Configure the Video Output Layers to decode RLE compressed textures or to
show sprite windows. Only one feature may be selected for each layer.
The windows of the WM are internally mapped to HW-video-output layers.
The assignment happens automatically and is influenced by the following parameters:
* Z-Index (PosZ), mapping to HW is started with lowest PosZ to lowest HW-Layer
* Color Format (r_wm_WinColorFmt_t), if RLE Format is requested, HW-Layers may be skipped until HW-Layer with RLE support is found.
* Window-Mode (r_wm_WinMode_t), if Sprite Mode is requested, HW-Layers may be skipped until HW-Layer with sprite support is found.
-> If no matching layer could be found with regard to the z-Index, the driver reports an error.
Please make sure, the z-Indices <PosZ> match the order of the required capabilities.
D1M1A only! Default values are as shown below.
For other devices, this is always fixed to the default values and cannot be changed.
Default values:
Capability0: RLE
Capability1: SPRITES
Capability2: SPRITES
Capability3: SPRITES
Calling this function influences both WM Unit 0 and WM Unit 1, therefore it has no Unit <parameter>.
Attention: The layer order of VO1 is different from the layer order of VO0.
Calling this function is only possible with all instances of VDCE/VOWE disabled.
Parameter:
Capability0 - Selects mode for VO0 Layer0 and VO1 Layer0
Capability1 - Selects mode for VO0 Layer1 and VO1 Layer3
Capability2 - Selects mode for VO0 Layer2 and VO1 Layer2
Capability3 - Selects mode for VO0 Layer3 and VO1 Layer1
*/
r_wm_Error_t R_WM_WindowCapabilitiesSet ( r_wm_WinCapbs_t Capability0,
r_wm_WinCapbs_t Capability1,
r_wm_WinCapbs_t Capability2,
r_wm_WinCapbs_t Capability3
);
/***********************************************************
Function: R_WM_WindowCreate
Description:
Create a window as specified in the Window parameter on screen Unit.
For variable locations of <r_wm_Window_t> that are not initialized
during startup, e.g. local variables or allocated variables, please
make sure to initialize all members of the struct.
Unused values may be set to zero.
For example: (code)
memset(&Window, 0, sizeof(r_wm_Window_t))
(end)
If the <r_wm_WinBufAllocMode_t> is R_WM_WINBUF_ALLOC_EXTERNAL
the pointer Buffer of the window structure has to point to
an array of BufNum elements of <r_wm_WinBuffer_t> type.
D1x/VDCE Specific:
- RLE-Type buffer addresses must be 128-Byte aligned.
- RLE-Type buffer strides must be 128-byte aligned and increased by another 128-byte.
- Normal-Type buffer addresses must be 128-Byte aligned.
Alternatively the Buffer does not need to be set yet.
It can be set later by <r_wm_WindowExternalBufSet>.
If the <r_wm_WinBufAllocMode_t> is R_WM_WINBUF_ALLOC_INTERNAL
the function will allocate the Buffer data for each buffer itself.
Buffer must be set to NULL.
The Next pointer value is set by the function; any value
in it will be ignored.
The window will not be visible until it is enabled.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a pointer to an <r_wm_Window_t> structure.
The structure has to be filled by the application
before calling the function.
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowCreate ( uint32_t Unit,
r_wm_Window_t *Window
);
/***********************************************************
Function: R_WM_WindowDelete
Description:
The function will delete the specified window.
All internally allocated data buffer will be freed by the function.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowDelete ( uint32_t Unit,
r_wm_Window_t *Window
);
/***********************************************************
Function: R_WM_WindowEnable
Description:
Enable the window. The window will be visible on the screen
after calling this function.
This function triggers a config event, see <r_wm_MsgId_t>.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowEnable ( uint32_t Unit,
r_wm_Window_t *Window
);
/***********************************************************
Function: R_WM_WindowDisable
Description:
Disable the window. The window will be invisible on the screen
after calling this function.
This function triggers a config event, see <r_wm_MsgId_t>.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a Window's structure <r_wm_Window_t> pointer
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowDisable ( uint32_t Unit,
r_wm_Window_t *Window
);
/***********************************************************
Function: R_WM_WindowMove
Description:
Move the window to the specified position.
This function triggers a move event, see <r_wm_MsgId_t>.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
PosX/PosY/PosZ - These parameters specify the new absolute position of the window on the screen.
For negative X coordinates, please note that moving is restricted
by the horizontal blanking width. Negative PosX values may not fall
below (-r_ddb_Timing_t.H.BlankWidth+16). For negative PosX that exceed
this limit, their value is clamped to (-r_ddb_Timing_t.H.BlankWidth+16).
An exception that allows for free moving in negative X direction is
that (r_ddb_Timing_t.H.BlankWidth - 16) >= (128 / BPP).
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowMove ( uint32_t Unit,
r_wm_Window_t *Window,
int32_t PosX,
int32_t PosY,
int32_t PosZ
);
/***********************************************************
Function: R_WM_WindowResize
Description:
Resizes the window.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Pitch/Width/Height - These parameters specify the new geometry of the window.
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowResize ( uint32_t Unit,
r_wm_Window_t *Window,
uint32_t Pitch,
uint32_t Width,
uint32_t Height
);
/***********************************************************
Function: R_WM_WindowColorFmtSet
Description:
Sets the color format of the window.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - Pointer to the window's structure <r_wm_Window_t>
ColorFmt - Window color format, see the description of <r_wm_WinColorFmt_t>
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowColorFmtSet ( uint32_t Unit,
r_wm_Window_t *Window,
r_wm_WinColorFmt_t ColorFmt
);
/***********************************************************
Function: R_WM_WindowAlphaSet
Description:
Change the window's alpha value.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Alpha - New alpha value of the window.
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowAlphaSet( uint32_t Unit,
r_wm_Window_t *Window,
uint8_t Alpha);
/***********************************************************
Function: R_WM_WindowPremultipliedAlphaEnable
Description:
Enable the window's premultiplied alpha mode.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowPremultipliedAlphaEnable( uint32_t Unit,
r_wm_Window_t *Window);
/***********************************************************
Function: R_WM_WindowPremultipliedAlphaDisable
Description:
Disable the window's premultiplied alpha mode.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowPremultipliedAlphaDisable( uint32_t Unit,
r_wm_Window_t *Window);
/***********************************************************
Function: R_WM_WindowVerticalMirrorEnable
Description:
Enable window's vertical mirroring.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowVerticalMirrorEnable( uint32_t Unit,
r_wm_Window_t *Window);
/***********************************************************
Function: R_WM_WindowVerticalMirrorDisable
Description:
Disable window's vertical mirroring.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowVerticalMirrorDisable( uint32_t Unit,
r_wm_Window_t *Window);
/***********************************************************
Function: R_WM_WindowSwap
Description:
If the window is a multi-buffer window, the background buffer
is switched to the window surface (see: <r_wm_WinBufStatus_t>).
Parameter:
Unit - See description of <R_WM_DevInit>
Window - Pointer to the window's structure <r_wm_Window_t>
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowSwap ( uint32_t Unit,
r_wm_Window_t *Window
);
/***********************************************************
Function: R_WM_WindowNewDrawBufGet
Description:
Returns the next free buffer of the specified window.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Return value:
Address of the next frame buffer, which can be used for drawing operations.
Zero if no free buffer is available.
*/
void *R_WM_WindowNewDrawBufGet ( uint32_t Unit,
r_wm_Window_t *Window
);
/***********************************************************
Function: R_WM_WindowVisibleBufGet
Description:
Returns the visible buffer of the specified window.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Return value:
Address of the next frame buffer, which is currently on screen (or scheduled to be on screen)
*/
void *R_WM_WindowVisibleBufGet ( uint32_t Unit,
r_wm_Window_t *Window
);
/***********************************************************
Function: R_WM_WindowCurrentDrawBufGet
Description:
Return the current drawing frame buffer of the specified window.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Return value:
Address of the current frame buffer.
Zero if error.
*/
void *R_WM_WindowCurrentDrawBufGet ( uint32_t Unit,
r_wm_Window_t *Window
);
/***********************************************************
Function: R_WM_WindowExternalBufSet
Description:
Dynamically set the framebuffers in desired format (not neccessarilly the same as during window creation)
for windows with externally allocated buffers.
The window must have been created with the <r_wm_WinBufAllocMode_t> R_WM_WINBUF_ALLOC_EXTERNAL.
D1x/VDCE Specific:
- RLE-Type buffer addresses must be 128-Byte aligned.
- RLE-Type buffer strides must be 128-byte aligned and increased by another 128-byte.
- Normal-Type buffer addresses must be 128-Byte aligned.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - Pointer to the window's structure <r_wm_Window_t>
Buf - Buffer array
BufNum - Number of buffers in the array
ColorFormat - Color format of the buffers
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowExternalBufSet ( uint32_t Unit,
r_wm_Window_t *Window,
r_wm_WinBuffer_t *Buf,
uint32_t BufNum,
r_wm_WinColorFmt_t ColorFormat
);
/***********************************************************
Function: R_WM_WindowColorKeyEnable
Description:
Enable the colorkeying of the selected Window.
Colorkeying will override the <r_wm_Window_t.Alpha> setting.
Parameters:
Unit - See description of <R_WM_DevInit>
Window - This is a window's structure <r_wm_Window_t> pointer
Returns value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowColorKeyEnable(uint32_t Unit, r_wm_Window_t *Window);
/***********************************************************
Function: R_WM_WindowColorKeyDisable
Description:
Disable the colorkeying of the selected Window
Parameters:
Unit - See description of <R_WM_DevInit>
Window - window's structure <r_wm_Window_t> pointer
Returns value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_WindowColorKeyDisable(uint32_t Unit, r_wm_Window_t *Window);
/***********************************************************
Function: R_WM_WindowClutSet
Description:
Sets the colour lookup table. Only applicable for the
windows with CLUT colour modes specified.
Parameters:
Unit - See description of <R_WM_DevInit>
Window - window's structure <r_wm_Window_t> pointer
NumEntries - Number of the color lookup-table entries
Clut - Color lookup-table pointer <r_wm_ClutEntry_t>.
Note: The data pointed to by the pointer <Clut> must be avalilable
as long as the Window using the CLUT color format is active.
*/
r_wm_Error_t R_WM_WindowClutSet ( uint32_t Unit,
r_wm_Window_t *Window,
uint32_t NumEntries,
const r_wm_ClutEntry_t *Clut
);
/***********************************************************
Function: R_WM_WindowRemoveAllSprites
Description:
Deletes all sprites associated to the window. This function is guaranteed
to execute faster than deleting sprite by sprite manually.
Parameters:
Unit - See description of <R_WM_DevInit>
Window - window's structure <r_wm_Window_t> pointer
*/
r_wm_Error_t R_WM_WindowDeleteAllSprites ( uint32_t Unit,
r_wm_Window_t *Window
);
/***********************************************************
Group: Message Queue
*/
/***********************************************************
Function: R_WM_MsgEnqueue
Description:
Enqueues the WM requests to the message queue.
Parameter:
Unit - See description of <R_WM_DevInit>
Msg - Event description, see <r_wm_Msg_t>.
Return value:
See <r_wm_Error_t>.
Note:
This function must not be called by an ISR!
*/
r_wm_Error_t R_WM_MsgEnqueue ( uint32_t Unit,
r_wm_Msg_t *Msg
);
/***********************************************************
Function: R_WM_FrameEndMark
Description:
Frame delimiter - marks the end of the sequence of the WM requests to be executed
during one frame redraw.
Parameters:
Unit - See description of <R_WM_DevInit>
Id - The sequence ID (should be used in subsequent R_WM_FrameWait call)
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_FrameEndMark(uint32_t Unit, uint16_t Id);
/***********************************************************
Function: R_WM_FrameWait
Description:
Executes the requests from the message queue up to the specicied frame delimiter.
Parameters:
Unit - See description of <R_WM_DevInit>
Id - ID of the frame up to which all the requests should be executed
Return value:
See <r_wm_Error_t>.
Remarks:
This function blocks until all the requests scheduled up to the specified frame delimiter
are executed, and the corresponding VOUT HW update is finished.
Specific implementation for the VDCE:
- Before processing the message queue, this function waits until the Hardware is ready to be
reconfigured. The point of time of this "Scanline Event" can be configured with the function
<R_WM_Sys_DevEventRegister>. The default value is (ScreenHeight / 2).
- After processing the queue, this function waits for the "VSync Event" until the Hardware
accepted the new configuration.
- Please note, if the "Scanline Event" already occurred for the current frame, this function
will wait for the next event, thus it will skip one frame.
The same applies to the "VSync Event". If processing the message queue took too much time to
miss the current event, this function will wait for the next event and skip one frame.
Default sequence:
The call to <R_WM_FrameWait> consists of
- WAIT (for "Scanline Event")
- EXEC (process the message queue)
- WAIT (for "VSync Event")
(code)
VSync ScanLine VSync ScanLine VSync
| | | | |
| DRW | | | DRW | | |
| | WAIT | | | WAIT | |
| | EXEC | | | EXEC | |
| | | WAIT | | | WAIT |
(end)
Problematic sequence:
Case 1 - The "Scanline Event" is configured to occur while drawing is still active.
The execution of the Message Queue will happen on the following "Scanline Event".
(code)
VSync ScanLine VSync ScanLine VSync
| | | | |
| DRW --------> | | | |
| | | WAIT ---------------> | |
| | | | EXEC | |
| | | | | WAIT |
(end)
Case 2 - The "Scanline Event" is configured to occur too close to the "Vsync Event".
Control will be given back to user application only after the following "VSync Event"
(code)
VSync ScanLine VSync ScanLine VSync
| | | | |
| DRW | | | | |
| | WAIT ----> | | | |
| | EXEC --> | | |
| | | | WAIT ---------------> |
(end)
*/
r_wm_Error_t R_WM_FrameWait(uint32_t Unit, uint16_t Id);
/***********************************************************
Function: R_WM_FrameExecuteNext
Description:
Requests to WM are stored in the message queue.
This function executes the requests in the queue up to the next frame delimiter.
Parameters:
Unit - See description of <R_WM_DevInit>
Return value:
The encountered frame-end Id .
Remarks:
This function can be used for implementing the custom drawing mechanism, apart from the
synchronous one provided by default.
*/
uint32_t R_WM_FrameExecuteNext(uint32_t Unit);
/***********************************************************
Group: Video Capture
The window manager offers the possibility to create surfaces
for the video capturing.
*/
/***********************************************************
Function: R_WM_CaptureCreate
Description:
Create a video capture surface inside a specific window on the screen Unit.
The pointer Window of the capture structure has to point to a valid window,
which needs to be of the 'frame buffer' type.
It is also the responsibility of the caller to ensure
that the window is suitable for the desired video capturing parameters.
The capturing surface will not be visible until it is enabled.
Parameter:
Unit - See description of <R_WM_DevInit>
Capture - This is a pointer to an <r_wm_Capture_t> structure.
The structure has to be filled by the application before calling the function.
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_CaptureCreate ( uint32_t Unit,
r_wm_Capture_t *Capture
);
/***********************************************************
Function: R_WM_CaptureDelete
Description:
Delete the specified capturing surface.
It will not delete the window, which is used for the capturing.
Parameter:
Unit - See description of <R_WM_DevInit>s
Capture - This is a pointer to the capturing surface's structure <r_wm_Capture_t>.
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_CaptureDelete(uint32_t Unit,
r_wm_Capture_t *Capture);
/***********************************************************
Function: R_WM_CaptureEnable
Description:
Enable the video capturing surface and start the capturing.
The capturing is visible inside the specified window.
Parameter:
Unit - See description of <R_WM_DevInit>
Capture - This is a pointer to the capturing surface's structure <r_wm_Capture_t>
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_CaptureEnable(uint32_t Unit,
r_wm_Capture_t *Capture);
/***********************************************************
Function: R_WM_CaptureDisable
Description:
Disable the video capturing. The last frame will remain in the window's framebuffer.
Parameter:
Unit - See description of <R_WM_DevInit>
Capture - This is a pointer to the capturing surface's structure <r_wm_Capture_t>.
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_CaptureDisable ( uint32_t Unit,
r_wm_Capture_t *Capture
);
/***********************************************************
Function: R_WM_Cap_CapBufGet
Description:
To be used for Interrupt-based Video Output Syncronisation by the WM SYS layer.
Grabs an empty writeable buffer to be assigned for video input capturing.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a pointer to the parent window handling the capturing.
Returns:
0 - if Buffer States do not match
Buf - if Buffer State change successful
*/
r_wm_WinBuffer_t *R_WM_Cap_CapBufGet( uint32_t Unit, r_wm_Window_t* Window );
/***********************************************************
Function: R_WM_Cap_DispBufGet
Description:
To be used for Interrupt-based Video Output Syncronisation by the WM SYS layer.
Grabs a captured buffer to be assigned for video output display.
Parameter:
Unit - See description of <R_WM_DevInit>
Window - This is a pointer to the parent window handling the capturing.
Returns:
0 - if Buffer States do not match
Buf - if Buffer State change successful
*/
r_wm_WinBuffer_t *R_WM_Cap_DispBufGet( uint32_t Unit, r_wm_Window_t* Window );
/***********************************************************
Group: Sprites
*/
/***********************************************************
Function: R_WM_SpriteCreate
Description:
Create a sprite as specified in the Sprite parameter on window Window of screen Unit.
The sprite will not be visible until it is enabled.
Parameter:
Unit - See description of <R_WM_DevInit>
Sprite - <R_WM_Sprite_t> structure pointer
The structure has to be filled by the application before calling the function.
Return value:
See R_WM_Error_t.
*/
r_wm_Error_t R_WM_SpriteCreate(uint32_t Unit, r_wm_Sprite_t *Sprite);
/***********************************************************
Function: R_WM_SpriteEnable
Description:
Enable the specified sprite. The sprite becomes visible on the screen.
Parameter:
Unit - See description of <R_WM_DevInit>
Sprite - <R_WM_Sprite_t> structure pointer
Return value:
See R_WM_Error_t.
*/
r_wm_Error_t R_WM_SpriteEnable(uint32_t Unit, r_wm_Sprite_t *Sprite);
/***********************************************************
Function: R_WM_SpriteDisable
Description:
Disable the specified sprite. The sprite becomes not visible on the screen.
Parameter:
Unit - See description of <R_WM_DevInit>
Sprite - <R_WM_Sprite_t> structure pointer
Return value:
See R_WM_Error_t.
*/
r_wm_Error_t R_WM_SpriteDisable(uint32_t Unit, r_wm_Sprite_t *Sprite);
/***********************************************************
Function: R_WM_SpriteMove
Description:
Move the sprite to the specified X/Y and Z-order location.
Parameter:
Unit - See description of <R_WM_DevInit>
Sprite - <R_WM_Sprite_t> structure pointer
PosX/PosY/PosZ - New sprite position
Return value:
See R_WM_Error_t.
Remarks:
The PosZ specifies the relative position of the sprite in the sprites Z-order.
Changing the PosZ of one sprite can yield VOUT HW registers writes for all the sprites
defined within a window.
*/
r_wm_Error_t R_WM_SpriteMove ( uint32_t Unit,
r_wm_Sprite_t *Sprite,
uint32_t PosX,
uint32_t PosY,
uint32_t PosZ
);
/***********************************************************
Function: R_WM_SpriteBufSet
Description:
Set the sprite buffer. This way the buffer initially
set upon completion of the <R_WM_SpriteCreate> can be changed.
Parameter:
Unit - See description of <R_WM_DevInit>
Sprite - <R_WM_Sprite_t> structure pointer
Buffer - New sprite buffer
Return value:
See R_WM_Error_t.
*/
r_wm_Error_t R_WM_SpriteBufSet(uint32_t Unit, r_wm_Sprite_t *Sprite, void *Buffer);
/***********************************************************
Function: R_WM_SpriteDelete
Description:
Remove the sprite from the host window.
Parameter:
Unit - See description of <R_WM_DevInit>
Sprite - <R_WM_Sprite_t> structure pointer
Return value:
See R_WM_Error_t.
*/
r_wm_Error_t R_WM_SpriteDelete(uint32_t Unit, r_wm_Sprite_t *Sprite);
/***********************************************************
Group: General
*/
/***********************************************************
Function: R_WM_ErrorCallbackSet
Description:
Set the error callback function.
Parameter:
Unit - See description of <R_WM_DevInit>
ErrorCb - Error callback function
Return value:
See <r_wm_Error_t>.
*/
r_wm_Error_t R_WM_ErrorCallbackSet ( uint32_t Unit,
void (*ErrorCb) ( uint32_t Unit,
r_wm_Error_t Error
)
);
/***********************************************************
Function: R_WM_ErrorHandler
Description:
The function is the driver's central error handler.
If the application has set an error handler call-back function,
the central error handler shall call it and then return to its caller.
The central error handler shall return in case no
error handler call-back function has been set.
Unit - See description of <R_WM_DevInit>
Error - See <r_wm_Error_t>.
Return value:
No return value.
*/
void R_WM_ErrorHandler ( uint32_t Unit,
r_wm_Error_t Error
);
/***********************************************************
Function: R_WM_ColorModeBitsPerPixGet
Description:
Return the bits per pixel count for the specified format.
Parameter:
Format - Color format
Return value:
Bits per pixel count of the specified format.
*/
uint8_t R_WM_ColorFmtBitsPerPixGet(r_wm_WinColorFmt_t Format);
#ifdef __cplusplus
}
#endif
#endif /* R_WM_API_H__ */