aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8.1/source/Irrlicht/CBurningShader_Raster_Reference.cpp
blob: dccdab6fa783296aa0721ad0db9139bc9d55e7ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
// Copyright (C) 2002-2012 Nikolaus Gebhardt / Thomas Alten
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h

#include "IrrCompileConfig.h"
#include "IBurningShader.h"

#ifdef _IRR_COMPILE_WITH_BURNINGSVIDEO_


namespace irr
{

namespace video
{

	/*! Render states define set-up states for all kinds of vertex and pixel processing.
		Some render states set up vertex processing, and some set up pixel processing (see Render States).
		Render states can be saved and restored using stateblocks (see State Blocks Save and Restore State).
	*/
	enum BD3DRENDERSTATETYPE
	{
		/*!	BD3DRS_ZENABLE 
			Depth-buffering state as one member of the BD3DZBUFFERTYPE enumerated type.
			Set this state to D3DZB_TRUE to enable z-buffering, 
			D3DZB_USEW to enable w-buffering, or D3DZB_FALSE to disable depth buffering. 
			The default value for this render state is D3DZB_TRUE if a depth stencil was created 
			along with the swap chain by setting the EnableAutoDepthStencil member of the
			D3DPRESENT_PARAMETERS structure to TRUE, and D3DZB_FALSE otherwise.
		*/
		BD3DRS_ZENABLE,

		/*!	BD3DRS_FILLMODE 
			One or more members of the D3DFILLMODE enumerated type. The default value is D3DFILL_SOLID. 
		*/
		BD3DRS_FILLMODE,

		/*!	BD3DRS_SHADEMODE 
			One or more members of the D3DSHADEMODE enumerated type. The default value is D3DSHADE_GOURAUD. 
		*/
		BD3DRS_SHADEMODE,

		/*!	BD3DRS_ZWRITEENABLE 
			TRUE to enable the application to write to the depth buffer. The default value is TRUE. 
			This member enables an application to prevent the system from updating the depth buffer with
			new depth values. If FALSE, depth comparisons are still made according to the render state
			D3DRS_ZFUNC, assuming that depth buffering is taking place, but depth values are not written
			to the buffer. 
		*/
		BD3DRS_ZWRITEENABLE,

		/*!	BD3DRS_ALPHATESTENABLE 
			TRUE to enable per pixel alpha testing. If the test passes, the pixel is processed by the frame
			buffer. Otherwise, all frame-buffer processing is skipped for the pixel. The test is done by 
			comparing the incoming alpha value with the reference alpha value, using the comparison function
			provided by the D3DRS_ALPHAFUNC render state. The reference alpha value is determined by the value
			set for D3DRS_ALPHAREF. For more information, see Alpha Testing State.
			The default value of this parameter is FALSE.
		*/
		BD3DRS_ALPHATESTENABLE,

		/*!	BD3DRS_SRCBLEND 
			One member of the BD3DBLEND enumerated type. The default value is BD3DBLEND_ONE.
		*/
		BD3DRS_SRCBLEND,

		/*!	BD3DRS_DESTBLEND
			One member of the BD3DBLEND enumerated type. The default value is BD3DBLEND_ZERO.
		*/
		BD3DRS_DESTBLEND,

		/*!	BD3DRS_CULLMODE
			Specifies how back-facing triangles are culled, if at all. This can be set to one 
			member of the BD3DCULL enumerated type. The default value is BD3DCULL_CCW.
		*/
		BD3DRS_CULLMODE,

		/*!	BD3DRS_ZFUNC 
			One member of the BD3DCMPFUNC enumerated type. The default value is BD3DCMP_LESSEQUAL. 
			This member enables an application to accept or reject a pixel, based on its distance from 
			the camera. The depth value of the pixel is compared with the depth-buffer value. If the depth
			value of the pixel passes the comparison function, the pixel is written.

			The depth value is written to the depth buffer only if the render state is TRUE.
			Software rasterizers and many hardware accelerators work faster if the depth test fails,
			because there is no need to filter and modulate the texture if the pixel is not going to be
			rendered.
		*/
		BD3DRS_ZFUNC,

		/*!	BD3DRS_ALPHAREF 
			Value that specifies a reference alpha value against which pixels are tested when alpha testing
			is enabled. This is an 8-bit value placed in the low 8 bits of the DWORD render-state value.
			Values can range from 0x00000000 through 0x000000FF. The default value is 0. 
		*/
		BD3DRS_ALPHAREF,

		/*!	BD3DRS_ALPHAFUNC 
			One member of the BD3DCMPFUNC enumerated type. The default value is BD3DCMP_ALWAYS. 
			This member enables an application to accept or reject a pixel, based on its alpha value.
		*/
		BD3DRS_ALPHAFUNC,

		/*!	BD3DRS_DITHERENABLE 
			TRUE to enable dithering. The default value is FALSE. 
		*/
		BD3DRS_DITHERENABLE,

		/*!	BD3DRS_ALPHABLENDENABLE 
			TRUE to enable alpha-blended transparency. The default value is FALSE. 
			The type of alpha blending is determined by the BD3DRS_SRCBLEND and BD3DRS_DESTBLEND render states.
		*/
		BD3DRS_ALPHABLENDENABLE,

		/*! BD3DRS_FOGENABLE 
			TRUE to enable fog blending. The default value is FALSE. For more information about using fog
			blending, see Fog. 
		*/
		BD3DRS_FOGENABLE,

		/*!	BD3DRS_SPECULARENABLE 
			TRUE to enable specular highlights. The default value is FALSE.
			Specular highlights are calculated as though every vertex in the object being lit is at the 
			object's origin. This gives the expected results as long as the object is modeled around the
			origin and the distance from the light to the object is relatively large. In other cases, the
			results as undefined.
			When this member is set to TRUE, the specular color is added to the base color after the 
			texture cascade but before alpha blending.
		*/
		BD3DRS_SPECULARENABLE,

		/*! BD3DRS_FOGCOLOR 
			Value whose type is D3DCOLOR. The default value is 0. For more information about fog color,
			see Fog Color. 
		*/
		BD3DRS_FOGCOLOR,

		/*!	BD3DRS_FOGTABLEMODE 
			The fog formula to be used for pixel fog. Set to one of the members of the D3DFOGMODE
			enumerated type. The default value is D3DFOG_NONE. For more information about pixel fog, 
			see Pixel Fog. 
		*/
		BD3DRS_FOGTABLEMODE,

		/*! BD3DRS_FOGSTART 
			Depth at which pixel or vertex fog effects begin for linear fog mode. The default value is 0.0f.
			Depth is specified in world space for vertex fog and either device space [0.0, 1.0] or world 
			space for pixel fog. For pixel fog, these values are in device space when the system uses z for 
			fog calculations and world-world space when the system is using eye-relative fog (w-fog). For 
			more information, see Fog Parameters and Eye-Relative vs. Z-based Depth. 
			Values for the this render state are floating-point values.
			Because the IDirect3DDevice9::SetRenderState method accepts DWORD values, your 
			application must cast a variable that contains the value, as shown in the following code example.
			pDevice9->SetRenderState( BD3DRS_FOGSTART, *((DWORD*) (&fFogStart)));
		*/
		BD3DRS_FOGSTART,

		/*! BD3DRS_FOGEND 
			Depth at which pixel or vertex fog effects end for linear fog mode. The default value is 1.0f.
			Depth is specified in world space for vertex fog and either device space [0.0, 1.0] or world space
			for pixel fog. For pixel fog, these values are in device space when the system uses z for fog
			calculations and in world space when the system is using eye-relative fog (w-fog). For more 
			information, see Fog Parameters and Eye-Relative vs. Z-based Depth. 
			Values for this render state are floating-point values. 
		*/
		BD3DRS_FOGEND,

		/*! BD3DRS_FOGDENSITY
			Fog density for pixel or vertex fog used in the exponential fog modes (D3DFOG_EXP and D3DFOG_EXP2).
			Valid density values range from 0.0 through 1.0. The default value is 1.0. For more information,
			see Fog Parameters. 
			Values for this render state are floating-point values.
		*/
		BD3DRS_FOGDENSITY,


		/*! BD3DRS_RANGEFOGENABLE 
			TRUE to enable range-based vertex fog. The default value is FALSE, in which case the system
			uses depth-based fog. In range-based fog, the distance of an object from the viewer is used
			to compute fog effects, not the depth of the object (that is, the z-coordinate) in the scene.
			In range-based fog, all fog methods work as usual, except that they use range instead of depth
			in the computations. 
			Range is the correct factor to use for fog computations, but depth is commonly used instead
			because range is time-consuming to compute and depth is generally already available. Using depth
			to calculate fog has the undesirable effect of having the fogginess of peripheral objects change
			as the viewer's eye moves - in this case, the depth changes and the range remains constant.

			Because no hardware currently supports per-pixel range-based fog, range correction is offered
			only for vertex fog.
			For more information, see Vertex Fog.
		*/
		BD3DRS_RANGEFOGENABLE = 48,

		/*! BD3DRS_STENCILENABLE 
			TRUE to enable stenciling, or FALSE to disable stenciling. The default value is FALSE.
			For more information, see Stencil Buffer Techniques. 
		*/
		BD3DRS_STENCILENABLE = 52,

		/*!	BD3DRS_STENCILFAIL 
			Stencil operation to perform if the stencil test fails. Values are from the D3DSTENCILOP 
			enumerated type. The default value is D3DSTENCILOP_KEEP. 
		*/
		BD3DRS_STENCILFAIL = 53,

		/*!	BD3DRS_STENCILZFAIL 
			Stencil operation to perform if the stencil test passes and the depth test (z-test) fails.
			Values are from the D3DSTENCILOP enumerated type. The default value is D3DSTENCILOP_KEEP. 
		*/
		BD3DRS_STENCILZFAIL = 54,

		/*!	BD3DRS_STENCILPASS 
			Stencil operation to perform if both the stencil and the depth (z) tests pass. Values are
			from the D3DSTENCILOP enumerated type. The default value is D3DSTENCILOP_KEEP. 
		*/
		BD3DRS_STENCILPASS = 55,

		/*!	BD3DRS_STENCILFUNC 
			Comparison function for the stencil test. Values are from the D3DCMPFUNC enumerated type.
			The default value is D3DCMP_ALWAYS. 
			The comparison function is used to compare the reference value to a stencil buffer entry.
			This comparison applies only to the bits in the reference value and stencil buffer entry that
			are set in the stencil mask (set by the D3DRS_STENCILMASK render state). If TRUE, the stencil 
			test passes.
		*/
		BD3DRS_STENCILFUNC = 56,

		/*! BD3DRS_STENCILREF 
			An int reference value for the stencil test. The default value is 0. 
		*/
		BD3DRS_STENCILREF = 57,

		/*! BD3DRS_STENCILMASK 
			Mask applied to the reference value and each stencil buffer entry to determine the significant
			bits for the stencil test. The default mask is 0xFFFFFFFF. 
		*/
		BD3DRS_STENCILMASK = 58,

		/*! BD3DRS_STENCILWRITEMASK 
			Write mask applied to values written into the stencil buffer. The default mask is 0xFFFFFFFF. 
		*/
		BD3DRS_STENCILWRITEMASK = 59,

		/*!	BD3DRS_TEXTUREFACTOR 
			Color used for multiple-texture blending with the D3DTA_TFACTOR texture-blending argument or the
			D3DTOP_BLENDFACTORALPHA texture-blending operation. The associated value is a D3DCOLOR variable.
			The default value is opaque white (0xFFFFFFFF). 
		*/
		BD3DRS_TEXTUREFACTOR = 60,

		/*! BD3DRS_WRAP0 
			Texture-wrapping behavior for multiple sets of texture coordinates. Valid values for this 
			render state can be any combination of the D3DWRAPCOORD_0 (or D3DWRAP_U), D3DWRAPCOORD_1
			(or D3DWRAP_V), D3DWRAPCOORD_2 (or D3DWRAP_W), and D3DWRAPCOORD_3 flags. These cause the system 
			to wrap in the direction of the first, second, third, and fourth dimensions, sometimes referred
			to as the s, t, r, and q directions, for a given texture. The default value for this render state
			is 0 (wrapping disabled in all directions). 
		*/
		BD3DRS_WRAP0 = 128,
		BD3DRS_WRAP1 = 129,
		BD3DRS_WRAP2 = 130,
		BD3DRS_WRAP3 = 131,
		BD3DRS_WRAP4 = 132,
		BD3DRS_WRAP5 = 133,
		BD3DRS_WRAP6 = 134,
		BD3DRS_WRAP7 = 135,

		/*! BD3DRS_CLIPPING 
			TRUE to enable primitive clipping by Direct3D, or FALSE to disable it. The default value is TRUE. 
		*/
		BD3DRS_CLIPPING = 136,

		/*! BD3DRS_LIGHTING 
			TRUE to enable Direct3D lighting, or FALSE to disable it. The default value is TRUE. Only 
			vertices that include a vertex normal are properly lit; vertices that do not contain a normal
			employ a dot product of 0 in all lighting calculations. 
		*/
		BD3DRS_LIGHTING = 137,

		/*! D3DRS_AMBIENT 
			Ambient light color. This value is of type D3DCOLOR. The default value is 0. 
		*/
		BD3DRS_AMBIENT = 139,

		/*! BD3DRS_FOGVERTEXMODE 
			Fog formula to be used for vertex fog. Set to one member of the BD3DFOGMODE enumerated type.
			The default value is D3DFOG_NONE. 
		*/
		BD3DRS_FOGVERTEXMODE = 140,

		/*! BD3DRS_COLORVERTEX 
			TRUE to enable per-vertex color or FALSE to disable it. The default value is TRUE. Enabling
			per-vertex color allows the system to include the color defined for individual vertices in its
			lighting calculations. 
			For more information, see the following render states:
				BD3DRS_DIFFUSEMATERIALSOURCE 
				BD3DRS_SPECULARMATERIALSOURCE 
				BD3DRS_AMBIENTMATERIALSOURCE 
				BD3DRS_EMISSIVEMATERIALSOURCE 
		*/
		BD3DRS_COLORVERTEX = 141,

		/*! BD3DRS_LOCALVIEWER 
			TRUE to enable camera-relative specular highlights, or FALSE to use orthogonal specular 
			highlights. The default value is TRUE. Applications that use orthogonal projection should 
			specify false. 
		*/
		BD3DRS_LOCALVIEWER = 142,

		/*! BD3DRS_NORMALIZENORMALS 
			TRUE to enable automatic normalization of vertex normals, or FALSE to disable it. The default
			value is FALSE. Enabling this feature causes the system to normalize the vertex normals for 
			vertices after transforming them to camera space, which can be computationally time-consuming. 
		*/
		BD3DRS_NORMALIZENORMALS = 143,

		/*! BD3DRS_DIFFUSEMATERIALSOURCE 
			Diffuse color source for lighting calculations. Valid values are members of the 
			D3DMATERIALCOLORSOURCE enumerated type. The default value is D3DMCS_COLOR1. The value for this
			render state is used only if the D3DRS_COLORVERTEX render state is set to TRUE. 
		*/
		BD3DRS_DIFFUSEMATERIALSOURCE = 145,

		/*! BD3DRS_SPECULARMATERIALSOURCE 
			Specular color source for lighting calculations. Valid values are members of the 
			D3DMATERIALCOLORSOURCE enumerated type. The default value is D3DMCS_COLOR2. 
		*/
		BD3DRS_SPECULARMATERIALSOURCE = 146,

		/*! D3DRS_AMBIENTMATERIALSOURCE 
			Ambient color source for lighting calculations. Valid values are members of the
			D3DMATERIALCOLORSOURCE enumerated type. The default value is D3DMCS_MATERIAL. 
		*/
		BD3DRS_AMBIENTMATERIALSOURCE = 147,

		/*! D3DRS_EMISSIVEMATERIALSOURCE 
			Emissive color source for lighting calculations. Valid values are members of the 
			D3DMATERIALCOLORSOURCE enumerated type. The default value is D3DMCS_MATERIAL. 
		*/
		BD3DRS_EMISSIVEMATERIALSOURCE = 148,

		/*! D3DRS_VERTEXBLEND 
			Number of matrices to use to perform geometry blending, if any. Valid values are members
			of the D3DVERTEXBLENDFLAGS enumerated type. The default value is D3DVBF_DISABLE. 
		*/
		BD3DRS_VERTEXBLEND = 151,

		/* D3DRS_CLIPPLANEENABLE 
			Enables or disables user-defined clipping planes. Valid values are any DWORD in which the
			status of each bit (set or not set) toggles the activation state of a corresponding user-defined
			clipping plane. The least significant bit (bit 0) controls the first clipping plane at index 0,
			and subsequent bits control the activation of clipping planes at higher indexes. If a bit is set,
			the system applies the appropriate clipping plane during scene rendering. The default value is 0.
			The D3DCLIPPLANEn macros are defined to provide a convenient way to enable clipping planes.
		*/
		BD3DRS_CLIPPLANEENABLE = 152,
		BD3DRS_POINTSIZE = 154,
		BD3DRS_POINTSIZE_MIN = 155,
		BD3DRS_POINTSPRITEENABLE = 156,
		BD3DRS_POINTSCALEENABLE = 157,
		BD3DRS_POINTSCALE_A = 158,
		BD3DRS_POINTSCALE_B = 159,
		BD3DRS_POINTSCALE_C = 160,
		BD3DRS_MULTISAMPLEANTIALIAS = 161,
		BD3DRS_MULTISAMPLEMASK = 162,
		BD3DRS_PATCHEDGESTYLE = 163,
		BD3DRS_DEBUGMONITORTOKEN = 165,
		BD3DRS_POINTSIZE_MAX = 166,
		BD3DRS_INDEXEDVERTEXBLENDENABLE = 167,
		BD3DRS_COLORWRITEENABLE = 168,
		BD3DRS_TWEENFACTOR = 170,
		BD3DRS_BLENDOP = 171,
		BD3DRS_POSITIONDEGREE = 172,
		BD3DRS_NORMALDEGREE = 173,
		BD3DRS_SCISSORTESTENABLE = 174,
		BD3DRS_SLOPESCALEDEPTHBIAS = 175,
		BD3DRS_ANTIALIASEDLINEENABLE = 176,
		BD3DRS_MINTESSELLATIONLEVEL = 178,
		BD3DRS_MAXTESSELLATIONLEVEL = 179,
		BD3DRS_ADAPTIVETESS_X = 180,
		BD3DRS_ADAPTIVETESS_Y = 181,
		BD3DRS_ADAPTIVETESS_Z = 182,
		BD3DRS_ADAPTIVETESS_W = 183,
		BD3DRS_ENABLEADAPTIVETESSELLATION = 184,
		BD3DRS_TWOSIDEDSTENCILMODE = 185,
		BD3DRS_CCW_STENCILFAIL = 186,
		BD3DRS_CCW_STENCILZFAIL = 187,
		BD3DRS_CCW_STENCILPASS = 188,
		BD3DRS_CCW_STENCILFUNC = 189,
		BD3DRS_COLORWRITEENABLE1 = 190,
		BD3DRS_COLORWRITEENABLE2 = 191,
		BD3DRS_COLORWRITEENABLE3 = 192,
		BD3DRS_BLENDFACTOR = 193,
		BD3DRS_SRGBWRITEENABLE = 194,
		BD3DRS_DEPTHBIAS = 195,
		BD3DRS_WRAP8 = 198,
		BD3DRS_WRAP9 = 199,
		BD3DRS_WRAP10 = 200,
		BD3DRS_WRAP11 = 201,
		BD3DRS_WRAP12 = 202,
		BD3DRS_WRAP13 = 203,
		BD3DRS_WRAP14 = 204,
		BD3DRS_WRAP15 = 205,
		BD3DRS_SEPARATEALPHABLENDENABLE = 206,
		BD3DRS_SRCBLENDALPHA = 207,
		BD3DRS_DESTBLENDALPHA = 208,
		BD3DRS_BLENDOPALPHA = 209,

		BD3DRS_MAX_TYPE
	};



	/*! Defines constants that describe depth-buffer formats
		Members of this enumerated type are used with the D3DRS_ZENABLE render state.
	*/
	enum BD3DZBUFFERTYPE
	{
		BD3DZB_FALSE                 = 0,	// Disable depth buffering
		BD3DZB_TRUE                  = 1,	// Enable z-buffering
		BD3DZB_USEW                  = 2	//Enable w-buffering.
	};

	//! Defines the supported compare functions.
	enum BD3DCMPFUNC
	{
		BD3DCMP_NEVER	= 1,// Always fail the test. 
		BD3DCMP_LESS,		// Accept the new pixel if its value is less than the value of the current pixel. 
		BD3DCMP_EQUAL,		// Accept the new pixel if its value equals the value of the current pixel. 
		BD3DCMP_LESSEQUAL,	// Accept the new pixel if its value is less than or equal to the value of the current pixel. 
		BD3DCMP_GREATER,		// Accept the new pixel if its value is greater than the value of the current pixel. 
		BD3DCMP_NOTEQUAL,	// Accept the new pixel if its value does not equal the value of the current pixel. 
		BD3DCMP_GREATEREQUAL,// Accept the new pixel if its value is greater than or equal to the value of the current pixel. 
		BD3DCMP_ALWAYS		// Always pass the test. 
	};

	enum BD3DMATERIALCOLORSOURCE
	{
		BD3DMCS_MATERIAL = 0,	// Use the color from the current material. 
		BD3DMCS_COLOR1 = 1,		// Use the diffuse vertex color. 
		BD3DMCS_COLOR2 = 2		// Use the specular vertex color. 
	};


	//! Defines constants that describe the supported shading modes.
	enum BD3DSHADEMODE
	{
		/*!	BD3DSHADE_FLAT
			Flat shading mode. The color and specular component of the first vertex in the triangle
			are used to determine the color and specular component of the face. These colors remain
			constant across the triangle; that is, they are not interpolated. The specular alpha is
			interpolated.
		*/
		BD3DSHADE_FLAT = 1,

		/*!	BD3DSHADE_GOURAUD
			Gouraud shading mode. The color and specular components of the face are determined by a
			linear interpolation between all three of the triangle's vertices.
		*/
		BD3DSHADE_GOURAUD = 2,

		/*!	BD3DSHADE_PHONG
			Not supported. 
		*/
		BD3DSHADE_PHONG = 3
	};

	/*!	Defines constants describing the fill mode
		The values in this enumerated type are used by the BD3DRS_FILLMODE render state
	*/
	enum BD3DFILLMODE
	{
		BD3DFILL_POINT = 1,		// Fill points.
		BD3DFILL_WIREFRAME = 2,	// Fill wireframes.
		BD3DFILL_SOLID = 3		// Fill solids.
	};



	/*! Defines the supported culling modes.
		The values in this enumerated type are used by the B3DRS_CULLMODE render state.
		The culling modes define how back faces are culled when rendering a geometry.
	*/
	enum BD3DCULL
	{
		BD3DCULL_NONE = 1,	// Do not cull back faces. 
		BD3DCULL_CW = 2,	// Cull back faces with clockwise vertices. 
		BD3DCULL_CCW = 3	// Cull back faces with counterclockwise vertices. 
	};

	struct SShaderParam
	{
		u32 ColorUnits;
		u32 TextureUnits;

		u32 RenderState [ BD3DRS_MAX_TYPE ];
		void SetRenderState ( BD3DRENDERSTATETYPE state, u32 value );
	};

	void SShaderParam::SetRenderState ( BD3DRENDERSTATETYPE state, u32 value )
	{
		RenderState [ state ] = value;
	}



class CBurningShader_Raster_Reference : public IBurningShader
{
public:

	//! constructor
	CBurningShader_Raster_Reference(CBurningVideoDriver* driver);

	//! draws an indexed triangle list
	virtual void drawTriangle ( const s4DVertex *a,const s4DVertex *b,const s4DVertex *c );

	virtual void setMaterial ( const SBurningShaderMaterial &material );


private:
	void scanline ();
	void scanline2 ();

	sScanLineData line;
	sPixelShaderData pShader;

	void pShader_1 ();
	void pShader_EMT_LIGHTMAP_M4 ();

	SShaderParam ShaderParam;

	REALINLINE u32 depthFunc ();
	REALINLINE void depthWrite ();


};

//! constructor
CBurningShader_Raster_Reference::CBurningShader_Raster_Reference(CBurningVideoDriver* driver)
: IBurningShader(driver)
{
	#ifdef _DEBUG
	setDebugName("CBurningShader_Raster_Reference");
	#endif
}


/*!
*/
void CBurningShader_Raster_Reference::pShader_EMT_LIGHTMAP_M4 ()
{
	tFixPoint r0, g0, b0;
	tFixPoint r1, g1, b1;

	f32 inversew = fix_inverse32 ( line.w[0] );

	getSample_texture ( r0, g0, b0, &IT[0], tofix ( line.t[0][0].x,inversew), tofix ( line.t[0][0].y,inversew) );
	getSample_texture ( r1, g1, b1, &IT[1], tofix ( line.t[1][0].x,inversew), tofix ( line.t[1][0].y,inversew) );


	pShader.dst[pShader.i] = fix_to_color ( clampfix_maxcolor ( imulFix_tex2 ( r0, r1 ) ),
							clampfix_maxcolor ( imulFix_tex2 ( g0, g1 ) ),
							clampfix_maxcolor ( imulFix_tex2 ( b0, b1 ) )
						);

}

/*!
*/
void CBurningShader_Raster_Reference::pShader_1 ()
{
	tFixPoint r0, g0, b0;
	tFixPoint tx0, ty0;

	const f32 inversew = fix_inverse32 ( line.w[0] );

	tx0 = tofix ( line.t[0][0].x, inversew );
	ty0 = tofix ( line.t[0][0].y, inversew );

	getSample_texture ( r0, g0, b0, &IT[0], tx0, ty0 );
	pShader.dst[pShader.i] = fix_to_color ( r0, g0, b0 );

}


/*!
*/
void CBurningShader_Raster_Reference::setMaterial ( const SBurningShaderMaterial &material )
{
	const video::SMaterial &m = material.org;

	u32 i;
	u32 enable;

	ShaderParam.ColorUnits = 0;
	ShaderParam.TextureUnits = 0;
	for ( i = 0; i != BURNING_MATERIAL_MAX_TEXTURES; ++i )
	{
		if ( m.getTexture( i ) )
			ShaderParam.TextureUnits = i;
	}

	// shademode
	ShaderParam.SetRenderState( BD3DRS_SHADEMODE,
		m.GouraudShading ? BD3DSHADE_GOURAUD : BD3DSHADE_FLAT
	);

	// fillmode
	ShaderParam.SetRenderState( BD3DRS_FILLMODE,
		m.Wireframe ? BD3DFILL_WIREFRAME : m.PointCloud ? BD3DFILL_POINT : BD3DFILL_SOLID
	);

	// back face culling
	ShaderParam.SetRenderState( BD3DRS_CULLMODE, 
		m.BackfaceCulling ? BD3DCULL_CCW : BD3DCULL_NONE
	);

	// lighting
	ShaderParam.SetRenderState( BD3DRS_LIGHTING, m.Lighting );

	// specular highlights
	enable = F32_LOWER_EQUAL_0 ( m.Shininess );
	ShaderParam.SetRenderState( BD3DRS_SPECULARENABLE, enable);
	ShaderParam.SetRenderState( BD3DRS_NORMALIZENORMALS, enable);
	ShaderParam.SetRenderState( BD3DRS_SPECULARMATERIALSOURCE, (m.ColorMaterial==ECM_SPECULAR)?BD3DMCS_COLOR1:BD3DMCS_MATERIAL);

	// depth buffer enable and compare
	ShaderParam.SetRenderState( BD3DRS_ZENABLE, (material.org.ZBuffer==video::ECFN_NEVER) ? BD3DZB_FALSE : BD3DZB_USEW);
	switch (material.org.ZBuffer)
	{
	case ECFN_NEVER:
		ShaderParam.SetRenderState(BD3DRS_ZFUNC, BD3DCMP_NEVER);
		break;
	case ECFN_LESSEQUAL:
		ShaderParam.SetRenderState(BD3DRS_ZFUNC, BD3DCMP_LESSEQUAL);
		break;
	case ECFN_EQUAL:
		ShaderParam.SetRenderState(BD3DRS_ZFUNC, BD3DCMP_EQUAL);
		break;
	case ECFN_LESS:
		ShaderParam.SetRenderState(BD3DRS_ZFUNC, BD3DCMP_LESSEQUAL);
		break;
	case ECFN_NOTEQUAL:
		ShaderParam.SetRenderState(BD3DRS_ZFUNC, BD3DCMP_NOTEQUAL);
		break;
	case ECFN_GREATEREQUAL:
		ShaderParam.SetRenderState(BD3DRS_ZFUNC, BD3DCMP_GREATEREQUAL);
		break;
	case ECFN_GREATER:
		ShaderParam.SetRenderState(BD3DRS_ZFUNC, BD3DCMP_GREATER);
		break;
	case ECFN_ALWAYS:
		ShaderParam.SetRenderState(BD3DRS_ZFUNC, BD3DCMP_ALWAYS);
		break;
	}

	// depth buffer write
	ShaderParam.SetRenderState( BD3DRS_ZWRITEENABLE, m.ZWriteEnable );
}

/*!
*/
REALINLINE u32 CBurningShader_Raster_Reference::depthFunc ()
{
	if ( ShaderParam.RenderState [ BD3DRS_ZENABLE ] )
	{
		switch ( ShaderParam.RenderState [ BD3DRS_ZFUNC ] )
		{
			case BD3DCMP_LESSEQUAL:
				return line.w[0] >= pShader.z[ pShader.i];
			case BD3DCMP_EQUAL:
				return line.w[0] == pShader.z[ pShader.i];
		}
	}
	return 1;
}

/*!
*/
REALINLINE void CBurningShader_Raster_Reference::depthWrite ()
{
	if ( ShaderParam.RenderState [ BD3DRS_ZWRITEENABLE ] )
	{
		pShader.z[pShader.i] = line.w[0];
	}
}

/*!
*/
REALINLINE void CBurningShader_Raster_Reference::scanline2()
{
	// apply top-left fill-convention, left
	pShader.xStart = core::ceil32( line.x[0] );
	pShader.xEnd = core::ceil32( line.x[1] ) - 1;

	pShader.dx = pShader.xEnd - pShader.xStart;
	if ( pShader.dx < 0 )
		return;

	// slopes
	const f32 invDeltaX = core::reciprocal ( line.x[1] - line.x[0] );
	const f32 subPixel = ( (f32) pShader.xStart ) - line.x[0];

	// store slopes in endpoint, and correct first pixel

	line.w[0] += (line.w[1] = (line.w[1] - line.w[0]) * invDeltaX) * subPixel;

	u32 i;

#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
	for ( i = 0; i != ShaderParam.ColorUnits; ++i )
	{
		line.c[i][1] = (line.c[i][1] - line.c[i][0]) * invDeltaX;
		line.c[i][0] += line.c[i][1] * subPixel;
	}
#endif

	for ( i = 0; i != ShaderParam.TextureUnits; ++i )
	{
		line.t[i][1] = (line.t[i][1] - line.t[i][0]) * invDeltaX;
		line.t[i][0] += line.t[i][1] * subPixel;
	}

	pShader.dst = (tVideoSample*) ( (u8*) RenderTarget->lock() + ( line.y * RenderTarget->getPitch() ) + ( pShader.xStart << VIDEO_SAMPLE_GRANULARITY ) );
	pShader.z = (fp24*) ( (u8*) DepthBuffer->lock() + ( line.y * DepthBuffer->getPitch() ) + ( pShader.xStart << VIDEO_SAMPLE_GRANULARITY ) );

	for ( pShader.i = 0; pShader.i <= pShader.dx; ++pShader.i )
	{
		if ( depthFunc() )
		{
			depthWrite ();
		}

		// advance next pixel
		line.w[0] += line.w[1];

#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
		for ( i = 0; i != ShaderParam.ColorUnits; ++i )
		{
			line.c[i][0] += line.c[i][1];
		}
#endif
		for ( i = 0; i != ShaderParam.TextureUnits; ++i )
		{
			line.t[i][0] += line.t[i][1];
		}
	}
}


/*!
*/
REALINLINE void CBurningShader_Raster_Reference::scanline ()
{
	u32 i;

	// apply top-left fill-convention, left
	pShader.xStart = core::ceil32( line.x[0] );
	pShader.xEnd = core::ceil32( line.x[1] ) - 1;

	pShader.dx = pShader.xEnd - pShader.xStart;
	if ( pShader.dx < 0 )
		return;

	// slopes
	const f32 invDeltaX = core::reciprocal ( line.x[1] - line.x[0] );

	// search z-buffer for first not occulled pixel
	pShader.z = (fp24*) ( (u8*) DepthBuffer->lock() + ( line.y * DepthBuffer->getPitch() ) + ( pShader.xStart << VIDEO_SAMPLE_GRANULARITY ) );

	// subTexel
	const f32 subPixel = ( (f32) pShader.xStart ) - line.x[0];

	const f32 b = (line.w[1] - line.w[0]) * invDeltaX;
	f32 a = line.w[0] + ( b * subPixel );

	pShader.i = 0;

	if ( ShaderParam.RenderState [ BD3DRS_ZENABLE ] )
	{
		u32 condition;
		switch ( ShaderParam.RenderState [ BD3DRS_ZFUNC ] )
		{
			case BD3DCMP_LESSEQUAL:
				condition = a < pShader.z[pShader.i];
				break;
			case BD3DCMP_EQUAL:
				condition = a != pShader.z[pShader.i];
				break;
		}
		while ( a < pShader.z[pShader.i] )
		{
			a += b;

			pShader.i += 1;
			if ( pShader.i > pShader.dx )
				return;
			
		}
	}

	// lazy setup rest of scanline

	line.w[0] = a;
	line.w[1] = b;

	pShader.dst = (tVideoSample*) ( (u8*) RenderTarget->lock() + ( line.y * RenderTarget->getPitch() ) + ( pShader.xStart << VIDEO_SAMPLE_GRANULARITY ) );

	a = (f32) pShader.i + subPixel;

#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
	for ( i = 0; i != ShaderParam.ColorUnits; ++i )
	{
		line.c[i][1] = (line.c[i][1] - line.c[i][0]) * invDeltaX;
		line.c[i][0] += line.c[i][1] * a;
	}
#endif

	for ( i = 0; i != ShaderParam.TextureUnits; ++i )
	{
		line.t[i][1] = (line.t[i][1] - line.t[i][0]) * invDeltaX;
		line.t[i][0] += line.t[i][1] * a;
	}

	for ( ; pShader.i <= pShader.dx; ++pShader.i )
	{
		if ( line.w[0] >= pShader.z[pShader.i] )
		{
			pShader.z[pShader.i] = line.w[0];

			pShader_EMT_LIGHTMAP_M4 ();
		}

		line.w[0] += line.w[1];

#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
		for ( i = 0; i != ShaderParam.ColorUnits; ++i )
		{
			line.c[i][0] += line.c[i][1];
		}
#endif
		for ( i = 0; i != ShaderParam.TextureUnits; ++i )
		{
			line.t[i][0] += line.t[i][1];
		}
	}

}
	


void CBurningShader_Raster_Reference::drawTriangle ( const s4DVertex *a,const s4DVertex *b,const s4DVertex *c )
{
	sScanConvertData scan;
	u32 i;

	// sort on height, y
	if ( F32_A_GREATER_B ( a->Pos.y , b->Pos.y ) ) swapVertexPointer(&a, &b);
	if ( F32_A_GREATER_B ( b->Pos.y , c->Pos.y ) ) swapVertexPointer(&b, &c);
	if ( F32_A_GREATER_B ( a->Pos.y , b->Pos.y ) ) swapVertexPointer(&a, &b);


	// calculate delta y of the edges
	scan.invDeltaY[0] = core::reciprocal ( c->Pos.y - a->Pos.y );
	scan.invDeltaY[1] = core::reciprocal ( b->Pos.y - a->Pos.y );
	scan.invDeltaY[2] = core::reciprocal ( c->Pos.y - b->Pos.y );

	if ( F32_LOWER_EQUAL_0 ( scan.invDeltaY[0] )  )
		return;


	// find if the major edge is left or right aligned
	f32 temp[4];

	temp[0] = a->Pos.x - c->Pos.x;
	temp[1] = a->Pos.y - c->Pos.y;
	temp[2] = b->Pos.x - a->Pos.x;
	temp[3] = b->Pos.y - a->Pos.y;

	scan.left = ( temp[0] * temp[3] - temp[1] * temp[2] ) > (f32) 0.0 ? 0 : 1;
	scan.right = 1 - scan.left;

	// calculate slopes for the major edge
	scan.slopeX[0] = (c->Pos.x - a->Pos.x) * scan.invDeltaY[0];
	scan.x[0] = a->Pos.x;

	scan.slopeW[0] = (c->Pos.w - a->Pos.w) * scan.invDeltaY[0];
	scan.w[0] = a->Pos.w;

#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
	for ( i = 0; i != ShaderParam.ColorUnits; ++i )
	{
		scan.c[i][0] = a->Color[i];
		scan.slopeC[i][0] = (c->Color[i] - a->Color[i]) * scan.invDeltaY[0];
	}
#endif

	for ( i = 0; i != ShaderParam.TextureUnits; ++i )
	{
		scan.t[i][0] = a->Tex[i];
		scan.slopeT[i][0] = (c->Tex[i] - a->Tex[i]) * scan.invDeltaY[0];
	}

	// top left fill convention y run
	s32 yStart;
	s32 yEnd;

	f32 subPixel;

	// rasterize upper sub-triangle
	if ( F32_GREATER_0 ( scan.invDeltaY[1] ) )
	{
		// calculate slopes for top edge
		scan.slopeX[1] = (b->Pos.x - a->Pos.x) * scan.invDeltaY[1];
		scan.x[1] = a->Pos.x;

		scan.slopeW[1] = (b->Pos.w - a->Pos.w) * scan.invDeltaY[1];
		scan.w[1] = a->Pos.w;

#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
		for ( i = 0; i != ShaderParam.ColorUnits; ++i )
		{
			scan.c[i][1] = a->Color[i];
			scan.slopeC[i][1] = (b->Color[i] - a->Color[i]) * scan.invDeltaY[1];
		}
#endif
		for ( i = 0; i != ShaderParam.TextureUnits; ++i )
		{
			scan.t[i][1] = a->Tex[i];
			scan.slopeT[i][1] = (b->Tex[i] - a->Tex[i]) * scan.invDeltaY[1];
		}

		// apply top-left fill convention, top part
		yStart = core::ceil32( a->Pos.y );
		yEnd = core::ceil32( b->Pos.y ) - 1;

		subPixel = ( (f32) yStart ) - a->Pos.y;

		// correct to pixel center
		scan.x[0] += scan.slopeX[0] * subPixel;
		scan.x[1] += scan.slopeX[1] * subPixel;		

		scan.w[0] += scan.slopeW[0] * subPixel;
		scan.w[1] += scan.slopeW[1] * subPixel;		

		for ( i = 0; i != ShaderParam.ColorUnits; ++i )
		{
			scan.c[i][0] += scan.slopeC[i][0] * subPixel;
			scan.c[i][1] += scan.slopeC[i][1] * subPixel;		
		}

		for ( i = 0; i != ShaderParam.TextureUnits; ++i )
		{
			scan.t[i][0] += scan.slopeT[i][0] * subPixel;
			scan.t[i][1] += scan.slopeT[i][1] * subPixel;		
		}

		// rasterize the edge scanlines
		for( line.y = yStart; line.y <= yEnd; ++line.y)
		{
			line.x[scan.left] = scan.x[0];
			line.w[scan.left] = scan.w[0];

			line.x[scan.right] = scan.x[1];
			line.w[scan.right] = scan.w[1];

#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
			for ( i = 0; i != ShaderParam.ColorUnits; ++i )
			{
				line.c[i][scan.left] = scan.c[i][0];
				line.c[i][scan.right] = scan.c[i][1];
			}
#endif
			for ( i = 0; i != ShaderParam.TextureUnits; ++i )
			{
				line.t[i][scan.left] = scan.t[i][0];
				line.t[i][scan.right] = scan.t[i][1];
			}

			// render a scanline
			scanline ();

			scan.x[0] += scan.slopeX[0];
			scan.x[1] += scan.slopeX[1];

			scan.w[0] += scan.slopeW[0];
			scan.w[1] += scan.slopeW[1];

			for ( i = 0; i != ShaderParam.ColorUnits; ++i )
			{
				scan.c[i][0] += scan.slopeC[i][0];
				scan.c[i][1] += scan.slopeC[i][1];
			}

			for ( i = 0; i != ShaderParam.TextureUnits; ++i )
			{
				scan.t[i][0] += scan.slopeT[i][0];
				scan.t[i][1] += scan.slopeT[i][1];
			}

		}
	}

	// rasterize lower sub-triangle
	if ( F32_GREATER_0 ( scan.invDeltaY[2] ) )
	{
		// advance to middle point
		if ( F32_GREATER_0 ( scan.invDeltaY[1] )  )
		{
			temp[0] = b->Pos.y - a->Pos.y;	// dy

			scan.x[0] = a->Pos.x + scan.slopeX[0] * temp[0];
			scan.w[0] = a->Pos.w + scan.slopeW[0] * temp[0];

#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
			for ( i = 0; i != ShaderParam.ColorUnits; ++i )
			{
				scan.c[i][0] = a->Color[i] + scan.slopeC[i][0] * temp[0];
			}
#endif
			for ( i = 0; i != ShaderParam.TextureUnits; ++i )
			{
				scan.t[i][0] = a->Tex[i] + scan.slopeT[i][0] * temp[0];
			}
		}

		// calculate slopes for bottom edge
		scan.slopeX[1] = (c->Pos.x - b->Pos.x) * scan.invDeltaY[2];
		scan.x[1] = b->Pos.x;

		scan.slopeW[1] = (c->Pos.w - b->Pos.w) * scan.invDeltaY[2];
		scan.w[1] = b->Pos.w;

#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
		for ( i = 0; i != ShaderParam.ColorUnits; ++i )
		{
			scan.c[i][1] = b->Color[i];
			scan.slopeC[i][1] = (c->Color[i] - b->Color[i]) * scan.invDeltaY[2];
		}
#endif
		for ( i = 0; i != ShaderParam.TextureUnits; ++i )
		{
			scan.t[i][1] = b->Tex[i];
			scan.slopeT[i][1] = (c->Tex[i] - b->Tex[i]) * scan.invDeltaY[2];
		}

		// apply top-left fill convention, top part
		yStart = core::ceil32( b->Pos.y );
		yEnd = core::ceil32( c->Pos.y ) - 1;


		subPixel = ( (f32) yStart ) - b->Pos.y;

		// correct to pixel center
		scan.x[0] += scan.slopeX[0] * subPixel;
		scan.x[1] += scan.slopeX[1] * subPixel;		

		scan.w[0] += scan.slopeW[0] * subPixel;
		scan.w[1] += scan.slopeW[1] * subPixel;		

		for ( i = 0; i != ShaderParam.ColorUnits; ++i )
		{
			scan.c[i][0] += scan.slopeC[i][0] * subPixel;
			scan.c[i][1] += scan.slopeC[i][1] * subPixel;		
		}

		for ( i = 0; i != ShaderParam.TextureUnits; ++i )
		{
			scan.t[i][0] += scan.slopeT[i][0] * subPixel;
			scan.t[i][1] += scan.slopeT[i][1] * subPixel;		
		}

		// rasterize the edge scanlines
		for( line.y = yStart; line.y <= yEnd; ++line.y)
		{
			line.x[scan.left] = scan.x[0];
			line.w[scan.left] = scan.w[0];

			line.x[scan.right] = scan.x[1];
			line.w[scan.right] = scan.w[1];

#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
			for ( i = 0; i != ShaderParam.ColorUnits; ++i )
			{
				line.c[i][scan.left] = scan.c[i][0];
				line.c[i][scan.right] = scan.c[i][1];
			}
#endif
			for ( i = 0; i != ShaderParam.TextureUnits; ++i )
			{
				line.t[i][scan.left] = scan.t[i][0];
				line.t[i][scan.right] = scan.t[i][1];
			}

			// render a scanline
			scanline ();

			scan.x[0] += scan.slopeX[0];
			scan.x[1] += scan.slopeX[1];

			scan.w[0] += scan.slopeW[0];
			scan.w[1] += scan.slopeW[1];

			for ( i = 0; i != ShaderParam.TextureUnits; ++i )
			{
				scan.c[i][0] += scan.slopeC[i][0];
				scan.c[i][1] += scan.slopeC[i][1];
			}

			for ( i = 0; i != ShaderParam.TextureUnits; ++i )
			{
				scan.t[i][0] += scan.slopeT[i][0];
				scan.t[i][1] += scan.slopeT[i][1];
			}
		}
	}
}


} // end namespace video
} // end namespace irr


namespace irr
{
namespace video
{



//! creates a flat triangle renderer
IBurningShader* createTriangleRendererReference(CBurningVideoDriver* driver)
{
	return new CBurningShader_Raster_Reference(driver);
}


} // end namespace video
} // end namespace irr

#endif // _IRR_COMPILE_WITH_BURNINGSVIDEO_