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
/*
****************************************************************************
PROJECT : Drw2D driver
FILE : $Id: r_drw2d_sys.h 14751 2017-09-25 04:27:33Z shinya.tomari $
============================================================================
DESCRIPTION
Driver for DRW2D
============================================================================
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.
============================================================================
Purpose: only for testing, not for mass production
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.
SAMPLE CODE is not part of the licensed software, as such it must not be used in
mass-production applications. It can only be used for evaluation and
demonstration purposes at customer's premises listed in the signed license
agreement.
****************************************************************************
*/
#ifndef R_DRW2D_SYS_H_
#define R_DRW2D_SYS_H_
#ifdef __cplusplus
extern "C" {
#endif
/***********************************************************
Title: DRW2D Support Functions for DaveHD (internal)
DRW2D driver support functions
The generic DRW2D driver uses these functions. They have to be implemented
within the driver library for a concrete device. (e.g. D1L, D1M)
Support functions are functions that are not part of the driver itself
but they must be provided to integrate the driver on a particular board.
It is not recommended to use this API directly.
Use R_DRW2D_API_* instead.
*/
/***********************************************************
Section: Global Defines
*/
/***********************************************************
Constant: R_DRW2D_UNIT_GLOBAL
Magic unit number used when handling a global error that
occured in <R_DRW2D_Init> or <R_DRW2D_Exit>.
See also:
<drw2d_ErrorHandler>, <R_DRW2D_UNIT_UNKNOWN>
*/
#define R_DRW2D_UNIT_GLOBAL (0x80008001u)
/***********************************************************
Constant: R_DRW2D_UNIT_UNKNOWN
Magic unit number used when handling an error that
occured when no valid device context was provided
by the application and the function called did not
specify a Unit parameter.
See also:
<drw2d_ErrorHandler>, <R_DRW2D_UNIT_GLOBAL>
*/
#define R_DRW2D_UNIT_UNKNOWN (0x80008002u)
/***********************************************************
Group: API-side dirty flag defines/constants
The API-side dirty flags are set and evaluated on the API-side.
*/
/***********************************************************
Constant: R_DRW2D_API_DIRTY_EFFCLIPRECT
Indicates that the effective clipping rectangle has to be recalculated.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_API_DIRTY_EFFCLIPRECT ((uint16_t)(((uint16_t)1u) << ((uint16_t)0)))
/***********************************************************
Constant: R_DRW2D_API_DIRTY_ALL
Bitmask that combines all API-side dirty flags.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_API_DIRTY_ALL ( \
(R_DRW2D_API_DIRTY_EFFCLIPRECT) \
)
#define R_DRW2D_API_DIRTY_ALL_INIT (R_DRW2D_API_DIRTY_ALL)
/***********************************************************
Group: Sys-side dirty flag defines/constants
The Sys-side dirty flags are usually set on the API-side and evaluated/reset on the Sys-side.
*/
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_CLIPRECT
Indicates that the clipping rectangle has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_CLIPRECT 1u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_FGCOLOR
Indicates that the foreground color has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_FGCOLOR 2u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_BGCOLOR
Indicates that the background fill color has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_BGCOLOR 4u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_FILLMODE
Indicates that the fill mode has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_FILLMODE 8u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_BLENDMODE
Indicates that the blending functions have changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_BLENDMODE 16u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_FRAMEBUFFER
Indicates that the framebuffer (render target) has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_FRAMEBUFFER 32u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_TEXTURE_0
Indicates that the source texture has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_TEXTURE_0 128u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_TEXTURE_1
Indicates that the source texture has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_TEXTURE_1 256u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_TEXTURE_CACHEXFORM
Indicates that the static texture mapping (via TextureMatrix) has changed and
the texture transformation cache needs to be updated.
(note) UV based texture coordinate transformation is done per primitive
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_TEXTURE_CACHEXFORM 512u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_TEXTURE_STATICMAP
Indicates that the static texture mapping (via TextureMatrix) has changed.
(note) UV based texture setup is done per primitive
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_TEXTURE_STATICMAP 1024u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_IMAGEQUALITY
Indicates that the image quality has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_IMAGEQUALITY 2048u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_CONVKERNEL1D
Indicates that the 1D convolution kernel (preset) has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_CONVKERNEL1D 4096u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_CONVKERNEL2D
Indicates that the 2D convolution kernel (preset) has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_CONVKERNEL2D 8192u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_EFFECTS
Indicates that the effect stages have changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_EFFECTS 16384u
/***********************************************************
Constant: R_DRW2D_SYS_DIRTY_CONVKERNEL
Indicates that the convolution kernel has changed.
See also:
<r_drw2d_DeviceBase_t>
*/
#define R_DRW2D_SYS_DIRTY_CONVKERNEL 32768u
/* (note) do not add brackets () or GHS MISRA check will fail */
#define R_DRW2D_SYS_DIRTY_TEXTURE_STATIC ( \
R_DRW2D_SYS_DIRTY_TEXTURE_0 | \
R_DRW2D_SYS_DIRTY_TEXTURE_CACHEXFORM | \
R_DRW2D_SYS_DIRTY_TEXTURE_STATICMAP) \
/* (note) do not add brackets () or GHS MISRA check will fail */
#define R_DRW2D_SYS_DIRTY_ALL_INIT ( \
R_DRW2D_SYS_DIRTY_CLIPRECT | \
R_DRW2D_SYS_DIRTY_FGCOLOR | \
R_DRW2D_SYS_DIRTY_BGCOLOR | \
R_DRW2D_SYS_DIRTY_FILLMODE | \
R_DRW2D_SYS_DIRTY_BLENDMODE | \
R_DRW2D_SYS_DIRTY_FRAMEBUFFER | \
R_DRW2D_SYS_DIRTY_IMAGEQUALITY | \
R_DRW2D_SYS_DIRTY_CONVKERNEL1D | \
R_DRW2D_SYS_DIRTY_CONVKERNEL2D | \
R_DRW2D_SYS_DIRTY_TEXTURE_STATIC) \
/* (note) do not add brackets () or GHS MISRA check will fail */
#define R_DRW2D_SYS_DIRTY_ALL_NOCONV ( \
R_DRW2D_SYS_DIRTY_CLIPRECT | \
R_DRW2D_SYS_DIRTY_FGCOLOR | \
R_DRW2D_SYS_DIRTY_BGCOLOR | \
R_DRW2D_SYS_DIRTY_FILLMODE | \
R_DRW2D_SYS_DIRTY_BLENDMODE | \
R_DRW2D_SYS_DIRTY_FRAMEBUFFER | \
R_DRW2D_SYS_DIRTY_IMAGEQUALITY | \
R_DRW2D_SYS_DIRTY_TEXTURE_STATIC) \
/* (note) do not add brackets () or GHS MISRA check will fail */
#define R_DRW2D_SYS_DIRTY_ALL_NOTEX ( \
R_DRW2D_SYS_DIRTY_CLIPRECT | \
R_DRW2D_SYS_DIRTY_FGCOLOR | \
R_DRW2D_SYS_DIRTY_BGCOLOR | \
R_DRW2D_SYS_DIRTY_FILLMODE | \
R_DRW2D_SYS_DIRTY_BLENDMODE | \
R_DRW2D_SYS_DIRTY_FRAMEBUFFER | \
R_DRW2D_SYS_DIRTY_IMAGEQUALITY)
/* (note) do not add brackets () or GHS MISRA check will fail */
#define R_DRW2D_SYS_DIRTY_ALL_UV ( \
R_DRW2D_SYS_DIRTY_CLIPRECT | \
R_DRW2D_SYS_DIRTY_FGCOLOR | \
R_DRW2D_SYS_DIRTY_BGCOLOR | \
R_DRW2D_SYS_DIRTY_FILLMODE | \
R_DRW2D_SYS_DIRTY_BLENDMODE | \
R_DRW2D_SYS_DIRTY_FRAMEBUFFER | \
R_DRW2D_SYS_DIRTY_TEXTURE_0 | \
R_DRW2D_SYS_DIRTY_IMAGEQUALITY)
/* (note) do not add brackets () or GHS MISRA check will fail */
#define R_DRW2D_SYS_DIRTY_ALL_CONV ( \
R_DRW2D_SYS_DIRTY_CLIPRECT | \
R_DRW2D_SYS_DIRTY_FGCOLOR | \
R_DRW2D_SYS_DIRTY_BGCOLOR | \
R_DRW2D_SYS_DIRTY_FILLMODE | \
R_DRW2D_SYS_DIRTY_BLENDMODE | \
R_DRW2D_SYS_DIRTY_FRAMEBUFFER | \
R_DRW2D_SYS_DIRTY_TEXTURE_0)
/* (note) do not add brackets () or GHS MISRA check will fail */
#define R_DRW2D_SYS_DIRTY_ALL_CONV1D ( \
R_DRW2D_SYS_DIRTY_ALL_CONV | \
R_DRW2D_SYS_DIRTY_CONVKERNEL1D)
/* (note) do not add brackets () or GHS MISRA check will fail */
#define R_DRW2D_SYS_DIRTY_ALL_CONV2D ( \
R_DRW2D_SYS_DIRTY_ALL_CONV | \
R_DRW2D_SYS_DIRTY_CONVKERNEL2D)
/* (note) do not add brackets () or GHS MISRA check will fail */
#define R_DRW2D_SYS_DIRTY_ALL_CONV_USER ( \
R_DRW2D_SYS_DIRTY_ALL_CONV | \
R_DRW2D_SYS_DIRTY_CONVKERNEL)
/***********************************************************
Section: DRW2D driver support functions
The DRW2D API supports different devices with different graphics driver macros.
It is also possible to use different macros in the same device.
*/
/***********************************************************
Group: DRW2D Basic interface functions
*/
/***********************************************************
Function: R_DRW2D_Platform_Init
Description:
Global initialization of DRW2D DaveHD API.
Called by <R_DRW2D_Init>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
None
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_Init(void);
/***********************************************************
Function: R_DRW2D_Platform_Exit
Description:
Global shutdown of DRW2D DaveHD API.
Called by <R_DRW2D_Exit>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
None
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_Exit(void);
/***********************************************************
Function: R_DRW2D_Platform_Open
Description:
Initialize DaveHD device context.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
Unit - DRW2D unit number (0..(R_DRW2D_NUM_UNITS - 1))
HwInstanceNr - DaveHD hardware instance nr
DeviceInternal - Pointer to the gfx driver handle,
When using DaveHD port, set r_drw2d_DeviceDHD_t.
It is defined in r_drw2d_ctx_dhd.h.
Normally, this variable is never used by user,
but it must be kept until <R_DRW2D_Platform_Close> is called.
RetDevice - Returns address of device context base class (allocated during call)
Return Value:
Error code, see <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_Open(r_drw2d_Unit_t Unit,
uint32_t HwInstanceNr,
void *DeviceInternal,
r_drw2d_DeviceBase_t **RetDevice
);
/***********************************************************
Function: R_DRW2D_Platform_Close
Description:
Shutdown/clean up DaveHD device context.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return Value:
Error code, see <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_Close(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_RenderContext_Init
Description:
Initialize a render context
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
RenderContext - Reference to uninitialized render context structure
DeviceBase - Address of device context base class
Return Value:
None
*/
void R_DRW2D_Platform_RenderContext_Init(r_drw2d_RenderContext_t *RenderContext,
r_drw2d_DeviceBase_t *DeviceBase
);
/***********************************************************
Function: R_DRW2D_Platform_DrawRectConvolve
Description:
1d or 2d convolution kernel blit
Called by <R_DRW2D_DrawRectConvolve1dx>, <R_DRW2D_DrawRectConvolve1dy>,
<R_DRW2D_DrawRectConvolve2d>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Rect - Rectangle x, y, w, h
TextureOffX - Horizontal texture offset
TextureOffY - Vertical texture offset
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_DrawRectConvolve (r_drw2d_DeviceBase_t *DeviceBase,
const r_drw2d_IntRect_t *Rect,
uint16_t TextureOffX,
uint16_t TextureOffY
);
/***********************************************************
Function: R_DRW2D_Platform_DrawBezierSegment
Description:
Render a bezier curve consisting of quadratic bezier segments.
Render a single rectangle. Vertices 4 and 5 (E and F) are located halfway between AB resp. CD.
E and F are used to set up the AB and CD edge interpolators, which may slightly
deviate from interpolators setup using AB and CD only (=> polygon holes).
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Vertices - Pointer to vertices
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_DrawBezierSegment(r_drw2d_DeviceBase_t *DeviceBase,
const r_drw2d_Vec4_t *Vertices
);
/***********************************************************
Function: R_DRW2D_Platform_DrawEllipse
Description:
Render an ellipse
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Center - Center point
RadiusX - Horizontal radius
RadiusY - Vertical radius
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_DrawEllipse(r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_Vec4_t Center,
r_drw2d_FixedP_t RadiusX,
r_drw2d_FixedP_t RadiusY
);
/***********************************************************
Function: R_DRW2D_Platform_DrawQuad_SharedEdge
Description:
Render an quadrilateral. Vertices 4 and 5 (E and F) are located halfway between AB resp. CD.
E and F are used to set up the AB and CD edge interpolators, which may slightly
deviate from interpolators setup using AB and CD only (=> polygon holes).
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Vertices - Pointer to vertices
QuadEdgeFlags - Specifies which quad edges will be antialiased.
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_DrawQuad_SharedEdge(r_drw2d_DeviceBase_t *DeviceBase,
const r_drw2d_Vec4_t *Vertices,
uint32_t QuadEdgeFlags
);
/***********************************************************
Function: R_DRW2D_Platform_DrawQuad
Description:
Render a single quad.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Vertices - Pointer to vertices
QuadEdgeFlags - Specifies which quad edges will be antialiased.
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_DrawQuad(r_drw2d_DeviceBase_t *DeviceBase,
const r_drw2d_Vec4_t *Vertices,
uint32_t QuadEdgeFlags
);
/***********************************************************
Function: R_DRW2D_Platform_DrawTriangle
Description:
Render a single triangle.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
A - Vertex A
B - Vertex B
C - Vertex C
EdgeFlags - Specifies which triangles edge will be antialiased.
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_DrawTriangle(
r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_Vec4_t A,
r_drw2d_Vec4_t B,
r_drw2d_Vec4_t C,
uint32_t EdgeFlags /* see R_DRW2D_EDGE_xxx */
);
/***********************************************************
Function: R_DRW2D_Platform_DrawTriangleUV
Description:
Render a UV texture mapped triangle.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
A - Vertex A
B - Vertex B
C - Vertex C
EdgeFlags - Specifies which triangles edge will be antialiased.
UVCoords - Array of UV coordinates
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_DrawTriangleUV(
r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_Vec4_t A,
r_drw2d_Vec4_t B,
r_drw2d_Vec4_t C,
uint32_t EdgeFlags, /* see R_DRW2D_EDGE_xxx */
const r_drw2d_UVCoord_t *UVCoords
);
/***********************************************************
Function: R_DRW2D_Platform_BlitTexture
Description:
Blit a texture.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Vertices - Pointer to vertices
SrcRect - Source rectangle
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_BlitTexture(r_drw2d_DeviceBase_t *DeviceBase,
const r_drw2d_Vec4_t *Vertices,
const r_drw2d_Rect_t *SrcRect
);
/***********************************************************
Function: R_DRW2D_Platform_FramebufferClear
Description:
Clear frame buffer
Called by <R_DRW2D_FramebufferClear>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_FramebufferClear(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_GpuFlush
Description:
Flush pending commands to renderer, do not wait.
Called by <R_DRW2D_GpuFinish>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_GpuFlush(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_GpuFlushMark
Description:
Flush pending commands to renderer, do not wait but mark this render job.
The "mark" if this render job finished can later be queried by <R_DRW2D_GpuFinished>.
Called by <R_DRW2D_GpuFinish>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_GpuFlushMark(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_GpuFinish
Description:
Flush pending commands to renderer and wait until rendering has finished.
Called by <R_DRW2D_GpuFinish>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_GpuFinish(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_GpuFinished
Description:
Indicate whether the GPU still has pending rendering jobs.
Can be used for single-threaded non-blocking use cases.
Called by <R_DRW2D_GpuFinished>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return value:
R_TRUE or R_FALSE, see <r_drw2d_Boolean_t>.
*/
r_drw2d_Boolean_t R_DRW2D_Platform_GpuFinished(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_GpuCmdListCreate
Description:
Allocate empty command list.
Called by <R_DRW2D_GpuCmdListCreate>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
RetCmdList - Receives the allocated command list address (see <r_drw2d_GpuCmdList_t>)
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_GpuCmdListCreate(r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_GpuCmdList_t *RetCmdList
);
/***********************************************************
Function: R_DRW2D_Platform_GpuCmdListGenerate
Description:
Record command list by calling a function that invokes render commands.
Any previously recorded command list data will be discarded.
The command list must have been created using <R_DRW2D_Platform_GpuCmdListCreate>.
Called by <R_DRW2D_GpuCmdListGenerate>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
CmdList - Command list handle (see <r_drw2d_GpuCmdList_t>)
Cbk - Callback function (see <r_drw2d_GpuCmdListCallback_t>)
UserData - Arbitrary user data which will be passed to the callback function
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_GpuCmdListGenerate(r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_GpuCmdList_t CmdList,
r_drw2d_GpuCmdListCallback_t Cbk,
void *UserData
);
/***********************************************************
Function: R_DRW2D_Platform_GpuCmdListExec
Description:
Execute previously recorded command list.
Called by <R_DRW2D_GpuCmdListExec>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
CmdList - Command list handle (see <r_drw2d_GpuCmdList_t>)
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_GpuCmdListExec(r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_GpuCmdList_t CmdList
);
/***********************************************************
Function: R_DRW2D_Platform_GpuCmdListCopy
Description:
Copy command list data to memory area.
If DestAddr is NULL, Size returns the required size (in bytes) and no command list data is
copied.
If RelocBaseAddr is != NULL, relocate jump commands so that the command list can later be
executed from the given address (e.g. in flash memory).
The copied command list may not be re-recorded or deleted using
<R_DRW2D_Platform_GpuCmdListDelete>.
Called by <R_DRW2D_GpuCmdListCopy>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
CmdList - Command list handle (see <r_drw2d_GpuCmdList_t>)
DestAddr - Where to copy the command list. NULL to query required size.
Size - If DestAddr is null, returns the required size.
Otherwise this parameter determines the maximum number of
bytes that DestAddr can hold.
RelocBaseAddr - If not null, specifies the start address from where the command
list can be executed later on (e.g. a flash memory address).
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_GpuCmdListCopy(r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_GpuCmdList_t CmdList,
void *DestAddr,
uint32_t *Size,
void *RelocBaseAddr
);
/***********************************************************
Function: R_DRW2D_Platform_GpuCmdListDelete
Description:
Delete command list.
The command list must have been created using <R_DRW2D_Platform_GpuCmdListCreate>.
Called by <R_DRW2D_GpuCmdListDelete>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
CmdList - Command list handle (see <r_drw2d_GpuCmdList_t>)
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_GpuCmdListDelete(r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_GpuCmdList_t CmdList
);
/***********************************************************
Function: R_DRW2D_Platform_NativeDriverHandleGet
Description:
Get platform-specific low level driver handle
Called by <R_DRW2D_NativeDriverHandleGet>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
RetNativeDriverHandle - Returns Native driver handle
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_NativeDriverHandleGet(r_drw2d_DeviceBase_t *DeviceBase,
void **RetNativeDriverHandle
);
/***********************************************************
Function: R_DRW2D_Platform_NativeDriverSaveState
Description:
Backup platform-specific low level driver state
Called by <R_DRW2D_NativeDriverBegin>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_NativeDriverSaveState(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_NativeDriverTryRestoreState
Description:
Restore platform-specific low level driver state if it was saved in
<R_DRW2D_NativeDriverBegin>.
Called by <R_DRW2D_NativeDriverEnd>.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_NativeDriverTryRestoreState(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_PerfCountersAlloc
Description:
Allocate hardware performance counters.
Can fail if another context is already using the counters.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_PerfCountersAlloc(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_PerfCountersFree
Description:
Free hardware performance counters.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_PerfCountersFree(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_PerfValueGet
Description:
Query the driver for HW cycles of specified type and return the value in Result.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Type - Performance type to query (see <r_drw2d_Performance_t>)
RetValue - Cycle count is stored here (must not be NULL).
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_PerfValueGet(r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_Performance_t Type,
uint32_t * RetValue
);
/***********************************************************
Function: R_DRW2D_Platform_PerfValueReset
Description:
Reset the HW cycles of the given performance type to 0.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Type - Performance type to query (see <r_drw2d_Performance_t>)
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_PerfValueReset(r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_Performance_t Type
);
/***********************************************************
Function: R_DRW2D_Platform_UpdateRenderstates
Description:
Update render states according to dirty flags (see <r_drw2d_DeviceBase_t>:CtxDirtyFlags)
and required flags.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
ReqFlags - The Sys-side dirty flags
Return value:
<R_DRW2D_ERR_OK> or error code (see <r_drw2d_Error_t>)
*/
r_drw2d_Error_t R_DRW2D_Platform_UpdateRenderstates(r_drw2d_DeviceBase_t *DeviceBase,
uint32_t ReqFlags
);
/***********************************************************
Function: R_DRW2D_Platform_TextureColorKeyEnable
Description:
Enables the ColorKey for DHD texture unit 0.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
ColorKey - The color in RGB (alpha component is ignored)
Return value:
None
*/
void R_DRW2D_Platform_TextureColorKeyEnable(r_drw2d_DeviceBase_t *DeviceBase,
r_drw2d_Color_t ColorKey);
/***********************************************************
Function: R_DRW2D_Platform_TextureColorKeyDisable
Description:
Disables the ColorKey for DHD texture unit 0.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Return value:
None
*/
void R_DRW2D_Platform_TextureColorKeyDisable(r_drw2d_DeviceBase_t *DeviceBase);
/***********************************************************
Function: R_DRW2D_Platform_ClutAlloc
Description:
Allocates space for a CLUT.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Size - Size of CLUT in bytes
Base - Pointer to a uint32_t that will receive the index
of the first allocated register when successful
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_ClutAlloc(r_drw2d_DeviceBase_t *DeviceBase,
uint32_t Size,
uint32_t *Base
);
/***********************************************************
Function: R_DRW2D_Platform_ClutFree
Description:
Frees CLUT memory previously allocated.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Size - Number of clut entries to release
Base - First clut register to release
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_ClutFree(r_drw2d_DeviceBase_t *DeviceBase,
uint32_t Size,
uint32_t Base
);
/***********************************************************
Function: R_DRW2D_Platform_ClutSet
Description:
Assign a previously created CLUT with the Offset ClutBase to the texture.
Customizing Points:
It is NOT necessary to modify this function in general use-case.
Parameter:
DeviceBase - Address of device context base class
Data - Pointer to the CLUT table
Start - First clut register to write to
Size - Number of clut entries to write
Return value:
See <r_drw2d_Error_t>.
*/
r_drw2d_Error_t R_DRW2D_Platform_ClutSet(r_drw2d_DeviceBase_t *DeviceBase,
uint32_t *Data,
uint32_t Start,
uint32_t Size
);
#ifdef __cplusplus
}
#endif
#endif /* R_DRW2D_SYS_H_ */