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
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "qquick3dshaderutils_p.h"
#include <QtCore/qfile.h>
#include <QtQml/qqmlcontext.h>
#include <QtQml/qqmlfile.h>
#include "qquick3dviewport_p.h"
#include "qquick3dcustommaterial_p.h"
#include "qquick3deffect_p.h"
#include "qquick3dtextureproviderextension.h"
#include <QtQuick3DRuntimeRender/private/qssgrenderimage_p.h>
QT_BEGIN_NAMESPACE
/*!
\qmltype Shader
\inherits QtObject
\inqmlmodule QtQuick3D
\brief Container component for defining shader code used by post-processing effects.
The Shader type is used for populating the \l{Pass::shaders}{shaders} list in the
render \l{Pass}{pass} of an \l Effect.
A shader is code which is executed directly on the graphic hardware at a particular
\l{Shader::stage}{stage} of the rendering pipeline.
\sa Effect
*/
/*!
\qmlproperty url Shader::shader
Specifies the name of the shader source file. For details on how to write shader code,
see the \l Effect documentation.
\warning Shader snippets are assumed to be trusted content. Application
developers are advised to carefully consider the potential implications
before allowing the loading of user-provided content that is not part of the
application.
*/
/*!
\qmlproperty enumeration Shader::stage
Specifies the stage of the rendering pipeline when the shader code will be executed.
The default is \c Shader.Fragment
\value Shader.Vertex The shader is a vertex shader. This code is run once per vertex
in the input geometry and can be used to modify it before the geometry is rasterized
(scan converted). In the case of effects, the input geometry is always a quad (four
vertexes representing the corners of the render target).
\value Shader.Fragment The shader is a fragment shader. After vertex processing,
the modified geometry is turned into fragments (rasterization). Then a fragment shader
is executed for each fragment, assigning a color to it. Fragments are a related concept
to pixels, but with additional information attached. Also, as a result of some
anti-aliasing strategies, there may be more than one fragment for each pixel in the
output.
*/
/*!
\qmltype TextureInput
\inherits QtObject
\inqmlmodule QtQuick3D
\brief Specifies a texture exposed to the shaders of a CustomMaterial or Effect.
This is a type which can be used for exposing a \l Texture to a shader, either
in the \l{Pass}{render pass} of an \l Effect, or in a \l CustomMaterial. It exists
primarily to assign a local name to the \l Texture that can be referenced from
shaders.
When a TextureInput property is declared in an \l Effect or a \l CustomMaterial,
it will automatically be available as a sampler in all shaders by its property
name.
*/
/*!
\qmlproperty Texture TextureInput::texture
The texture for which this TextureInput serves as an indirection.
*/
/*!
\qmlproperty bool TextureInput::enabled
The property determines if this TextureInput is enabled. The default value
is true. When disabled, the shaders of the effect sample a dummy, opaque
black texture instead of the one specified by \l texture.
*/
/*!
\qmltype Pass
\inherits QtObject
\inqmlmodule QtQuick3D
\brief Defines a render pass in an Effect.
An \l Effect may consist of multiple render passes. Each render pass has a
setup phase where the list of \l{Pass::commands}{render commands} are executed,
a \l{Pass::output}{output buffer} and a list of \l{Pass::shaders}{shaders} to
use for rendering the effect.
See the documentation for \l Effect for more details on how to set up multiple
rendering passes.
*/
/*!
\qmlproperty Buffer Pass::output
Specifies the output \l {Buffer}{buffer} of the pass.
*/
/*!
\qmlproperty list Pass::commands
Specifies the list of render \l {Command}{commands} of the pass.
*/
/*!
\qmlproperty list Pass::shaders
Specifies the list of \l {Shader}{shaders} of the pass.
*/
/*!
\qmltype Command
\inherits QtObject
\inqmlmodule QtQuick3D
\brief Supertype of commands to be performed as part of a pass in an Effect.
The Command type should not be instantiated by itself, but only exists as a
polymorphic supertype for the different actions that can be performed as part
of a \l{Pass}{render pass}.
\sa BufferInput, SetUniformValue, Effect
*/
/*!
\qmltype BufferInput
\inherits Command
\inqmlmodule QtQuick3D
\brief Defines an input buffer to be used as input for a pass of an Effect.
BufferInput is a \l Command which can be added to the list of commands in the \l Pass of
an \l Effect. When executed, it will expose the buffer as a sample to the shaders
in the render pass. The shaders must declare a sampler with the name given in the
BufferInput's \c sampler property.
This can be used for sharing intermediate results between the different passes of an
effect.
\sa TextureInput
*/
/*!
\qmlproperty Buffer BufferInput::buffer
Specifies the \l {Buffer}{buffer} which should be exposed to the shader.
*/
/*!
\qmlproperty string BufferInput::sampler
Specifies the name under which the buffer is exposed to the shader.
When this property is not set, the buffer is exposed with the built-in name \c INPUT.
*/
/*!
\qmltype Buffer
\inherits QtObject
\inqmlmodule QtQuick3D
\brief Creates or references a color buffer to be used for a pass of an Effect.
A Buffer can be used to create intermediate buffers to share data between
\l{Pass}{render passes} in an \l Effect.
\note If the \l name property of the Buffer is empty, it will reference the
default output texture of the render pass.
*/
/*!
\qmlproperty enumeration Buffer::format
Specifies the texture format. The default value is Buffer.RGBA8.
\value Buffer.RGBA8
\value Buffer.RGBA16F
\value Buffer.RGBA32F
\value Buffer.R8
\value Buffer.R16
\value Buffer.R16F
\value Buffer.R32F
*/
/*!
\qmlproperty enumeration Buffer::textureFilterOperation
Specifies the texture filtering mode when sampling the contents of the
Buffer. The default value is Buffer.Linear.
\value Buffer.Nearest Use nearest-neighbor filtering.
\value Buffer.Linear Use linear filtering.
*/
/*!
\qmlproperty enumeration Buffer::textureCoordOperation
Specifies the behavior for texture coordinates when sampling outside the [0, 1] range.
The default is Buffer.ClampToEdge.
\value Buffer.ClampToEdge Clamp coordinates to the edges.
\value Buffer.Repeat Wrap the coordinates at the edges to tile the texture.
\value Buffer.MirroredRepeat Wrap the coordinate at the edges, but mirror the texture
when tiling it.
*/
/*!
\qmlproperty real Buffer::sizeMultiplier
Specifies the size multiplier of the buffer. For instance, a value of \c 1.0 creates
a buffer with the same size as the effect's input texture while \c 0.5 creates buffer
where both width and height is half as big. The default value is 1.0.
*/
/*!
\qmlproperty enumeration Buffer::bufferFlags
Specifies the buffer allocation flags. The default is Buffer.None.
\value Buffer.None No special behavior.
\value Buffer.SceneLifetime The buffer is allocated for the whole lifetime of the scene.
*/
/*!
\qmlproperty string Buffer::name
Specifies the name of the buffer.
\note When this property is empty, the Buffer will refer to the default output texture
of the \l{Pass}{render pass} instead of allocating a buffer. This can be useful to
override certain settings of the output, such as the texture format, without introducing
a new, separate intermediate texture.
*/
/*!
\qmltype SetUniformValue
\inherits Command
\inqmlmodule QtQuick3D
\brief Defines a value to be set during a single \l {Pass}{pass}.
\since 5.15
SetUniformValue is a \l Command which can be added to the list of commands in a \l Pass. When
executed, it will set the uniform given by the \l{SetUniformValue::target}{target} property
to \l{SetUniformValue::value}{value}.
\note The value set by this command is will only be set during the \l {Pass}{pass} it occurs in.
For consecutive passes the value will be revert to the initial value of the uniform as it
was defined in the \l Effect item.
\sa BufferInput
*/
/*!
\qmlproperty string SetUniformValue::target
Specifies the name of the uniform that will have its value changed during the \l {Pass}{pass}.
This must match the name of an existing property in the \l Effect.
*/
/*!
\qmlproperty Variant SetUniformValue::value
Specifies the value that will be set on the \c target uniform.
*/
/*!
\qmltype renderTargetBlend
\inqmlmodule QtQuick3D
\brief Defines blending parameters for a single color attachment of a render pass.
\since 6.11
The renderTargetBlend type is used to specify blending parameters for a single
color attachment of a \l RenderPass. An instance of renderTargetBlend can be
assigned to one of the \c PipelineStateOverride::targetBlendN properties, where N
is the index of the color attachment to configure.
\qmlproperty bool renderTargetBlend::blendEnabled
If set to true, enables blending for the color attachment. If set to false,
disables blending.
\qmlproperty enumeration renderTargetBlend::colorWrite
Sets the color channels that will be written to the color attachment.
\value renderTargetBlend.R
\value renderTargetBlend.G
\value renderTargetBlend.B
\value renderTargetBlend.A
\qmlproperty enumeration renderTargetBlend::srcColor
Sets the source color blend factor for the color attachment.
\value renderTargetBlend.Zero
\value renderTargetBlend.One
\value renderTargetBlend.SrcColor
\value renderTargetBlend.OneMinusSrcColor
\value renderTargetBlend.DstColor
\value renderTargetBlend.OneMinusDstColor
\value renderTargetBlend.SrcAlpha
\value renderTargetBlend.OneMinusSrcAlpha
\value renderTargetBlend.DstAlpha
\value renderTargetBlend.OneMinusDstAlpha
\value renderTargetBlend.ConstantColor
\value renderTargetBlend.OneMinusConstantColor
\value renderTargetBlend.ConstantAlpha
\value renderTargetBlend.OneMinusConstantAlpha
\value renderTargetBlend.SrcAlphaSaturate
\value renderTargetBlend.Src1Color
\value renderTargetBlend.OneMinusSrc1Color
\value renderTargetBlend.Src1Alpha
\value renderTargetBlend.OneMinusSrc1Alpha
\qmlproperty enumeration renderTargetBlend::dstColor
Sets the destination color blend factor for the color attachment.
\value renderTargetBlend.Zero
\value renderTargetBlend.One
\value renderTargetBlend.SrcColor
\value renderTargetBlend.OneMinusSrcColor
\value renderTargetBlend.DstColor
\value renderTargetBlend.OneMinusDstColor
\value renderTargetBlend.SrcAlpha
\value renderTargetBlend.OneMinusSrcAlpha
\value renderTargetBlend.DstAlpha
\value renderTargetBlend.OneMinusDstAlpha
\value renderTargetBlend.ConstantColor
\value renderTargetBlend.OneMinusConstantColor
\value renderTargetBlend.ConstantAlpha
\value renderTargetBlend.OneMinusConstantAlpha
\value renderTargetBlend.SrcAlphaSaturate
\value renderTargetBlend.Src1Color
\value renderTargetBlend.OneMinusSrc1Color
\value renderTargetBlend.Src1Alpha
\value renderTargetBlend.OneMinusSrc1Alpha
\qmlproperty enumeration renderTargetBlend::opColor
Sets the color blend operation for the color attachment.
\value renderTargetBlend.Add
\value renderTargetBlend.Subtract
\value renderTargetBlend.ReverseSubtract
\value renderTargetBlend.Min
\value renderTargetBlend.Max
\qmlproperty enumeration renderTargetBlend::srcAlpha
Sets the source alpha blend factor for the color attachment.
\value renderTargetBlend.Zero
\value renderTargetBlend.One
\value renderTargetBlend.SrcColor
\value renderTargetBlend.OneMinusSrcColor
\value renderTargetBlend.DstColor
\value renderTargetBlend.OneMinusDstColor
\value renderTargetBlend.SrcAlpha
\value renderTargetBlend.OneMinusSrcAlpha
\value renderTargetBlend.DstAlpha
\value renderTargetBlend.OneMinusDstAlpha
\value renderTargetBlend.ConstantColor
\value renderTargetBlend.OneMinusConstantColor
\value renderTargetBlend.ConstantAlpha
\value renderTargetBlend.OneMinusConstantAlpha
\value renderTargetBlend.SrcAlphaSaturate
\value renderTargetBlend.Src1Color
\value renderTargetBlend.OneMinusSrc1Color
\value renderTargetBlend.Src1Alpha
\value renderTargetBlend.OneMinusSrc1Alpha
\qmlproperty enumeration renderTargetBlend::dstAlpha
Sets the destination alpha blend factor for the color attachment.
\value renderTargetBlend.Zero
\value renderTargetBlend.One
\value renderTargetBlend.SrcColor
\value renderTargetBlend.OneMinusSrcColor
\value renderTargetBlend.DstColor
\value renderTargetBlend.OneMinusDstColor
\value renderTargetBlend.SrcAlpha
\value renderTargetBlend.OneMinusSrcAlpha
\value renderTargetBlend.DstAlpha
\value renderTargetBlend.OneMinusDstAlpha
\value renderTargetBlend.ConstantColor
\value renderTargetBlend.OneMinusConstantColor
\value renderTargetBlend.ConstantAlpha
\value renderTargetBlend.OneMinusConstantAlpha
\value renderTargetBlend.SrcAlphaSaturate
\value renderTargetBlend.Src1Color
\value renderTargetBlend.OneMinusSrc1Color
\value renderTargetBlend.Src1Alpha
\value renderTargetBlend.OneMinusSrc1Alpha
\qmlproperty enumeration renderTargetBlend::opAlpha
Sets the alpha blend operation for the color attachment.
\value renderTargetBlend.Add
\value renderTargetBlend.Subtract
\value renderTargetBlend.ReverseSubtract
\value renderTargetBlend.Min
\value renderTargetBlend.Max
*/
/*!
\qmltype PipelineStateOverride
\inherits Command
\inqmlmodule QtQuick3D
\brief Defines pipeline state overrides for a single \l {RenderPass}{pass}.
\since 6.11
PipelineStateOverride is a \l Command which can be added to the list of commands in a \l RenderPass.
When executed, it will override the pipeline state in the render pass according to the properties set on
the PipelineStateOverride. Only values that are set will override the existing pipeline state's values.
If you want to reset a value that has been overriden to the default, then make sure to set the property
to \c undefined.
\qmlproperty bool PipelineStateOverride::depthTestEnabled
If set to true, enables depth testing for the render pass. If set to false, disables depth testing.
Setting this property to true requires a depth attachment for the render pass.
\qmlproperty bool PipelineStateOverride::depthWriteEnabled
If set to true, enables depth writing for the render pass. If set to false, disables depth writing.
Setting this property to true requires a depth attachment for the render pass.
\qmlproperty bool PipelineStateOverride::blendEnabled
If set to true, enables blending for the render pass. If set to false, disables blending.
\qmlproperty bool PipelineStateOverride::usesStencilReference
If set to true, enables the use of stencil reference value for the render pass. If set to false,
disables the use of stencil reference value.
\qmlproperty bool PipelineStateOverride::usesScissor
If set to true, enables the use of scissor test for the render pass. If set to false,
disables the use of scissor test.
\qmlproperty enumeration PipelineStateOverride::depthFunction
Sets the depth comparison function for the render pass.
\value PipelineStateOverride.Never
\value PipelineStateOverride.Less
\value PipelineStateOverride.Equal
\value PipelineStateOverride.LessOrEqual
\value PipelineStateOverride.Greater
\value PipelineStateOverride.NotEqual
\value PipelineStateOverride.GreaterOrEqual
\value PipelineStateOverride.Always
\qmlproperty enumeration PipelineStateOverride::cullMode
Sets the face culling mode for the render pass.
\value PipelineStateOverride.None
\value PipelineStateOverride.Front
\value PipelineStateOverride.Back
\qmlproperty enumeration PipelineStateOverride::polygonMode
Sets the polygon rasterization mode for the render pass.
\value PipelineStateOverride.Fill
\value PipelineStateOverride.Line
\qmlproperty uint PipelineStateOverride::stencilWriteMask
Sets the stencil write mask for the render pass.
\qmlproperty uint PipelineStateOverride::stencilReference
Sets the stencil reference value for the render pass.
\qmlproperty Rectangle PipelineStateOverride::viewport
Sets the viewport rectangle for the render pass.
\qmlproperty Rectangle PipelineStateOverride::scissor
Sets the scissor rectangle for the render pass.
\qmlproperty TargetBlend PipelineStateOverride::targetBlend0
Sets the blending parameters for color attachment 0 of the render pass.
\qmlproperty TargetBlend PipelineStateOverride::targetBlend1
Sets the blending parameters for color attachment 1 of the render pass.
\qmlproperty TargetBlend PipelineStateOverride::targetBlend2
Sets the blending parameters for color attachment 2 of the render pass.
\qmlproperty TargetBlend PipelineStateOverride::targetBlend3
Sets the blending parameters for color attachment 3 of the render pass.
\qmlproperty TargetBlend PipelineStateOverride::targetBlend4
Sets the blending parameters for color attachment 4 of the render pass.
\qmlproperty TargetBlend PipelineStateOverride::targetBlend5
Sets the blending parameters for color attachment 5 of the render pass.
\qmlproperty TargetBlend PipelineStateOverride::targetBlend6
Sets the blending parameters for color attachment 6 of the render pass.
\qmlproperty TargetBlend PipelineStateOverride::targetBlend7
Sets the blending parameters for color attachment 7 of the render pass.
*/
/*!
\qmltype DepthStencilAttachment
\inherits Command
\inqmlmodule QtQuick3D
\brief Defines a depth-stencil attachment for a RenderPass.
\since 6.11
The DepthStencilAttachment type is used to specify a depth-stencil attachment
for a \l RenderPass. This represents a render buffer attachment, so it cannot be
directly sampled in shaders.
*/
namespace QSSGShaderUtils {
ResolveFunction resolveShaderOverride = nullptr;
void setResolveFunction(ResolveFunction fn)
{
resolveShaderOverride = fn;
}
QByteArray resolveShader(const QUrl &fileUrl, const QQmlContext *context, QByteArray &shaderPathKey)
{
if (resolveShaderOverride) {
QByteArray shaderData;
if (resolveShaderOverride(fileUrl, context, shaderData, shaderPathKey))
return shaderData;
}
if (!shaderPathKey.isEmpty())
shaderPathKey.append('>');
const QUrl loadUrl = context ? context->resolvedUrl(fileUrl) : fileUrl;
const QString filePath = QQmlFile::urlToLocalFileOrQrc(loadUrl);
QFile f(filePath);
if (f.open(QIODevice::ReadOnly | QIODevice::Text)) {
shaderPathKey += loadUrl.fileName().toUtf8();
return f.readAll();
} else {
qWarning("Failed to read shader code from %s", qPrintable(filePath));
}
return QByteArray();
}
// These are the QMetaTypes that we convert into uniforms.
static constexpr QMetaType::Type qssg_metatype_list[] {
QMetaType::Double,
QMetaType::Bool,
QMetaType::QVector2D,
QMetaType::QVector3D,
QMetaType::QVector4D,
QMetaType::Int,
QMetaType::QColor,
QMetaType::QSize,
QMetaType::QSizeF,
QMetaType::QPoint,
QMetaType::QPointF,
QMetaType::QRect,
QMetaType::QRectF,
QMetaType::QQuaternion,
QMetaType::QMatrix4x4
};
template<>
struct ShaderType<QMetaType::Double>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Float; }
static QByteArray name() { return QByteArrayLiteral("float"); }
};
template<>
struct ShaderType<QMetaType::Bool>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Boolean; }
static QByteArray name() { return QByteArrayLiteral("bool"); }
};
template<>
struct ShaderType<QMetaType::Int>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Integer; }
static QByteArray name() { return QByteArrayLiteral("int"); }
};
template<>
struct ShaderType<QMetaType::QVector2D>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Vec2; }
static QByteArray name() { return QByteArrayLiteral("vec2"); }
};
template<>
struct ShaderType<QMetaType::QVector3D>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Vec3; }
static QByteArray name() { return QByteArrayLiteral("vec3"); }
};
template<>
struct ShaderType<QMetaType::QVector4D>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Vec4; }
static QByteArray name() { return QByteArrayLiteral("vec4"); }
};
template<>
struct ShaderType<QMetaType::QColor>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Rgba; }
static QByteArray name() { return QByteArrayLiteral("vec4"); }
};
template<>
struct ShaderType<QMetaType::QSize>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Size; }
static QByteArray name() { return QByteArrayLiteral("vec2"); }
};
template<>
struct ShaderType<QMetaType::QSizeF>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::SizeF; }
static QByteArray name() { return QByteArrayLiteral("vec2"); }
};
template<>
struct ShaderType<QMetaType::QPoint>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Point; }
static QByteArray name() { return QByteArrayLiteral("vec2"); }
};
template<>
struct ShaderType<QMetaType::QPointF>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::PointF; }
static QByteArray name() { return QByteArrayLiteral("vec2"); }
};
template<>
struct ShaderType<QMetaType::QRect>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Rect; }
static QByteArray name() { return QByteArrayLiteral("vec4"); }
};
template<>
struct ShaderType<QMetaType::QRectF>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::RectF; }
static QByteArray name() { return QByteArrayLiteral("vec4"); }
};
template<>
struct ShaderType<QMetaType::QQuaternion>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Quaternion; }
static QByteArray name() { return QByteArrayLiteral("vec4"); }
};
template<>
struct ShaderType<QMetaType::QMatrix4x4>
{
static constexpr QSSGRenderShaderValue::Type type() { return QSSGRenderShaderValue::Matrix4x4; }
static QByteArray name() { return QByteArrayLiteral("mat4"); }
};
QByteArray uniformTypeName(QMetaType type)
{
switch (type.id()) {
case QMetaType::Double:
case QMetaType::Float:
return ShaderType<QMetaType::Double>::name();
case QMetaType::Bool:
return ShaderType<QMetaType::Bool>::name();
case QMetaType::QVector2D:
return ShaderType<QMetaType::QVector2D>::name();
case QMetaType::QVector3D:
return ShaderType<QMetaType::QVector3D>::name();
case QMetaType::QVector4D:
return ShaderType<QMetaType::QVector4D>::name();
case QMetaType::Int:
return ShaderType<QMetaType::Int>::name();
case QMetaType::QColor:
return ShaderType<QMetaType::QColor>::name();
case QMetaType::QSize:
return ShaderType<QMetaType::QSize>::name();
case QMetaType::QSizeF:
return ShaderType<QMetaType::QSizeF>::name();
case QMetaType::QPoint:
return ShaderType<QMetaType::QPoint>::name();
case QMetaType::QPointF:
return ShaderType<QMetaType::QPointF>::name();
case QMetaType::QRect:
return ShaderType<QMetaType::QRect>::name();
case QMetaType::QRectF:
return ShaderType<QMetaType::QRectF>::name();
case QMetaType::QQuaternion:
return ShaderType<QMetaType::QQuaternion>::name();
case QMetaType::QMatrix4x4:
return ShaderType<QMetaType::QMatrix4x4>::name();
default:
return QByteArray();
}
}
QByteArray uniformTypeName(QSSGRenderShaderValue::Type type)
{
switch (type) {
case QSSGRenderShaderValue::Float:
return ShaderType<QMetaType::Double>::name();
case QSSGRenderShaderValue::Boolean:
return ShaderType<QMetaType::Bool>::name();
case QSSGRenderShaderValue::Integer:
return ShaderType<QMetaType::Int>::name();
case QSSGRenderShaderValue::Vec2:
return ShaderType<QMetaType::QVector2D>::name();
case QSSGRenderShaderValue::Vec3:
return ShaderType<QMetaType::QVector3D>::name();
case QSSGRenderShaderValue::Vec4:
return ShaderType<QMetaType::QVector4D>::name();
case QSSGRenderShaderValue::Rgba:
return ShaderType<QMetaType::QColor>::name();
case QSSGRenderShaderValue::Size:
return ShaderType<QMetaType::QSize>::name();
case QSSGRenderShaderValue::SizeF:
return ShaderType<QMetaType::QSizeF>::name();
case QSSGRenderShaderValue::Point:
return ShaderType<QMetaType::QPoint>::name();
case QSSGRenderShaderValue::PointF:
return ShaderType<QMetaType::QPointF>::name();
case QSSGRenderShaderValue::Rect:
return ShaderType<QMetaType::QRect>::name();
case QSSGRenderShaderValue::RectF:
return ShaderType<QMetaType::QRectF>::name();
case QSSGRenderShaderValue::Quaternion:
return ShaderType<QMetaType::QQuaternion>::name();
case QSSGRenderShaderValue::Matrix4x4:
return ShaderType<QMetaType::QMatrix4x4>::name();
default:
return QByteArray();
}
}
QSSGRenderShaderValue::Type uniformType(QMetaType type)
{
switch (type.id()) {
case QMetaType::Double:
case QMetaType::Float:
return ShaderType<QMetaType::Double>::type();
case QMetaType::Bool:
return ShaderType<QMetaType::Bool>::type();
case QMetaType::QVector2D:
return ShaderType<QMetaType::QVector2D>::type();
case QMetaType::QVector3D:
return ShaderType<QMetaType::QVector3D>::type();
case QMetaType::QVector4D:
return ShaderType<QMetaType::QVector4D>::type();
case QMetaType::Int:
return ShaderType<QMetaType::Int>::type();
case QMetaType::QColor:
return ShaderType<QMetaType::QColor>::type();
case QMetaType::QSize:
return ShaderType<QMetaType::QSize>::type();
case QMetaType::QSizeF:
return ShaderType<QMetaType::QSizeF>::type();
case QMetaType::QPoint:
return ShaderType<QMetaType::QPoint>::type();
case QMetaType::QPointF:
return ShaderType<QMetaType::QPointF>::type();
case QMetaType::QRect:
return ShaderType<QMetaType::QRect>::type();
case QMetaType::QRectF:
return ShaderType<QMetaType::QRectF>::type();
case QMetaType::QQuaternion:
return ShaderType<QMetaType::QQuaternion>::type();
case QMetaType::QMatrix4x4:
return ShaderType<QMetaType::QMatrix4x4>::type();
default:
return QSSGRenderShaderValue::Unknown;
}
}
MetaTypeList supportedMetatypes()
{
return {std::begin(qssg_metatype_list), std::end(qssg_metatype_list)};
}
}
QQuick3DShaderUtilsBuffer::TextureFormat QQuick3DShaderUtilsBuffer::mapRenderTextureFormat(QSSGRenderTextureFormat::Format fmt)
{
using TextureFormat = QQuick3DShaderUtilsBuffer::TextureFormat;
switch (fmt) {
case QSSGRenderTextureFormat::RGBA8: return TextureFormat::RGBA8;
case QSSGRenderTextureFormat::RGBA16F: return TextureFormat::RGBA16F;
case QSSGRenderTextureFormat::RGBA32F: return TextureFormat::RGBA32F;
case QSSGRenderTextureFormat::R8: return TextureFormat::R8;
case QSSGRenderTextureFormat::R16: return TextureFormat::R16;
case QSSGRenderTextureFormat::R16F: return TextureFormat::R16F;
case QSSGRenderTextureFormat::R32F: return TextureFormat::R32F;
default:
break;
}
return TextureFormat::Unknown;
}
QSSGRenderTextureFormat::Format QQuick3DShaderUtilsBuffer::mapTextureFormat(QQuick3DShaderUtilsBuffer::TextureFormat fmt)
{
using TextureFormat = QQuick3DShaderUtilsBuffer::TextureFormat;
switch (fmt) {
case TextureFormat::RGBA8: return QSSGRenderTextureFormat::RGBA8;
case TextureFormat::RGBA16F: return QSSGRenderTextureFormat::RGBA16F;
case TextureFormat::RGBA32F: return QSSGRenderTextureFormat::RGBA32F;
case TextureFormat::R8: return QSSGRenderTextureFormat::R8;
case TextureFormat::R16: return QSSGRenderTextureFormat::R16;
case TextureFormat::R16F: return QSSGRenderTextureFormat::R16F;
case TextureFormat::R32F: return QSSGRenderTextureFormat::R32F;
default:
break;
}
return QSSGRenderTextureFormat::Unknown;
}
QQuick3DShaderUtilsBuffer::TextureFormat QQuick3DShaderUtilsBuffer::format() const
{
return mapRenderTextureFormat(command.m_format.format);
}
void QQuick3DShaderUtilsBuffer::setFormat(TextureFormat format)
{
QSSGRenderTextureFormat::Format mappedTextureFormat = mapTextureFormat(format);
if (command.m_format == mappedTextureFormat)
return;
command.m_format = mappedTextureFormat;
emit changed();
}
void QQuick3DShaderUtilsBuffer::setTextureFilterOperation(TextureFilterOperation op)
{
if (command.m_filterOp == QSSGRenderTextureFilterOp(op))
return;
command.m_filterOp = QSSGRenderTextureFilterOp(op);
emit changed();
}
void QQuick3DShaderUtilsBuffer::setTextureCoordOperation(TextureCoordOperation texCoordOp)
{
if (command.m_texCoordOp == QSSGRenderTextureCoordOp(texCoordOp))
return;
command.m_texCoordOp = QSSGRenderTextureCoordOp(texCoordOp);
emit changed();
}
void QQuick3DShaderUtilsBuffer::setBufferFlags(AllocateBufferFlagValues flag)
{
if (quint32(command.m_bufferFlags) == quint32(flag))
return;
command.m_bufferFlags = quint32(flag);
emit changed();
}
QQuick3DShaderUtilsRenderPass::~QQuick3DShaderUtilsRenderPass()
{
}
void QQuick3DShaderUtilsRenderPass::qmlAppendCommand(QQmlListProperty<QQuick3DShaderUtilsRenderCommand> *list,
QQuick3DShaderUtilsRenderCommand *command)
{
if (!command)
return;
QQuick3DShaderUtilsRenderPass *that = qobject_cast<QQuick3DShaderUtilsRenderPass *>(list->object);
that->m_commands.push_back(command);
emit that->changed();
}
QQuick3DShaderUtilsRenderCommand *QQuick3DShaderUtilsRenderPass::qmlCommandAt(QQmlListProperty<QQuick3DShaderUtilsRenderCommand> *list,
qsizetype index)
{
QQuick3DShaderUtilsRenderPass *that = qobject_cast<QQuick3DShaderUtilsRenderPass *>(list->object);
return that->m_commands.at(index);
}
qsizetype QQuick3DShaderUtilsRenderPass::qmlCommandCount(QQmlListProperty<QQuick3DShaderUtilsRenderCommand> *list)
{
QQuick3DShaderUtilsRenderPass *that = qobject_cast<QQuick3DShaderUtilsRenderPass *>(list->object);
return that->m_commands.size();
}
void QQuick3DShaderUtilsRenderPass::qmlCommandClear(QQmlListProperty<QQuick3DShaderUtilsRenderCommand> *list)
{
QQuick3DShaderUtilsRenderPass *that = qobject_cast<QQuick3DShaderUtilsRenderPass *>(list->object);
that->m_commands.clear();
emit that->changed();
}
QQmlListProperty<QQuick3DShaderUtilsRenderCommand> QQuick3DShaderUtilsRenderPass::commands()
{
return QQmlListProperty<QQuick3DShaderUtilsRenderCommand>(this,
nullptr,
QQuick3DShaderUtilsRenderPass::qmlAppendCommand,
QQuick3DShaderUtilsRenderPass::qmlCommandCount,
QQuick3DShaderUtilsRenderPass::qmlCommandAt,
QQuick3DShaderUtilsRenderPass::qmlCommandClear);
}
void QQuick3DShaderUtilsRenderPass::qmlAppendShader(QQmlListProperty<QQuick3DShaderUtilsShader> *list,
QQuick3DShaderUtilsShader *shader)
{
if (!shader)
return;
QQuick3DShaderUtilsRenderPass *that = qobject_cast<QQuick3DShaderUtilsRenderPass *>(list->object);
// An append implementation CANNOT rely on the object (shader in this case)
// being complete. When the list references a Shader object living under
// another Effect, its properties may not be set at the point of this
// function being called, so accessing shader->stage is not allowed since
// it may still have its default value, not what is set from QML...
// the only thing we can do is to append to our list, do not try to be clever
that->m_shaders.append(shader);
connect(shader, &QQuick3DShaderUtilsShader::shaderChanged, that, &QQuick3DShaderUtilsRenderPass::changed);
connect(shader, &QQuick3DShaderUtilsShader::stageChanged, that, &QQuick3DShaderUtilsRenderPass::changed);
emit that->changed();
}
QQuick3DShaderUtilsShader *QQuick3DShaderUtilsRenderPass::qmlShaderAt(QQmlListProperty<QQuick3DShaderUtilsShader> *list,
qsizetype index)
{
QQuick3DShaderUtilsRenderPass *that = qobject_cast<QQuick3DShaderUtilsRenderPass *>(list->object);
return that->m_shaders.at(index);
}
qsizetype QQuick3DShaderUtilsRenderPass::qmlShaderCount(QQmlListProperty<QQuick3DShaderUtilsShader> *list)
{
QQuick3DShaderUtilsRenderPass *that = qobject_cast<QQuick3DShaderUtilsRenderPass *>(list->object);
return that->m_shaders.size();
}
void QQuick3DShaderUtilsRenderPass::qmlShaderClear(QQmlListProperty<QQuick3DShaderUtilsShader> *list)
{
QQuick3DShaderUtilsRenderPass *that = qobject_cast<QQuick3DShaderUtilsRenderPass *>(list->object);
for (QQuick3DShaderUtilsShader *shader : that->m_shaders)
shader->disconnect(that);
that->m_shaders.clear();
emit that->changed();
}
QQmlListProperty<QQuick3DShaderUtilsShader> QQuick3DShaderUtilsRenderPass::shaders()
{
return QQmlListProperty<QQuick3DShaderUtilsShader>(this,
nullptr,
QQuick3DShaderUtilsRenderPass::qmlAppendShader,
QQuick3DShaderUtilsRenderPass::qmlShaderCount,
QQuick3DShaderUtilsRenderPass::qmlShaderAt,
QQuick3DShaderUtilsRenderPass::qmlShaderClear);
}
QQuick3DShaderUtilsTextureInput::QQuick3DShaderUtilsTextureInput(QQuick3DObject *p) : QQuick3DObject(p) {}
QQuick3DShaderUtilsTextureInput::~QQuick3DShaderUtilsTextureInput()
{
}
void QQuick3DShaderUtilsTextureInput::setTexture(QQuick3DTexture *texture)
{
if (m_texture == texture)
return;
QObject *p = parent();
while (p != nullptr) {
if (QQuick3DCustomMaterial *mat = qobject_cast<QQuick3DCustomMaterial *>(p)) {
mat->setDynamicTextureMap(this);
QQuick3DObjectPrivate::attachWatcherPriv(mat, this, &QQuick3DShaderUtilsTextureInput::setTexture, texture, m_texture);
break;
} else if (QQuick3DEffect *efx = qobject_cast<QQuick3DEffect *>(p)) {
efx->setDynamicTextureMap(this);
QQuick3DObjectPrivate::attachWatcherPriv(efx, this, &QQuick3DShaderUtilsTextureInput::setTexture, texture, m_texture);
break;
}
p = p->parent();
}
if (p == nullptr) {
qWarning("A TextureInput was defined without a CustomMaterial or Effect ancestor. This should be avoided.");
}
m_texture = texture;
Q_EMIT textureChanged();
}
/*!
\qmltype RenderablesFilter
\inherits Command
\inqmlmodule QtQuick3D
\brief Defines a filter for selecting which renderables to affect in a \l {RenderPass}{pass}.
\since 6.11
The RenderablesFilter type is used to specify which renderables in the scene
should be affected by a \l RenderPass. By setting the \c renderableTypes property,
you can control whether the pass affects Opaque or Transparent objects.
In addition to filtering by renderable types, you can also use the \l{RenderablesFilter::layerMask}{layerMask}
to further refine which renderables are affected based on their assigned \l{QtQuick3D::Node::layers}{layers}.
*/
/*!
\qmlproperty int RenderablesFilter::layerMask
Sets the layer mask for the filter. Only renderables on the specified layers will be affected by the filter.
\sa l{QtQuick3D::Node::layers}
*/
/*!
\qmlproperty enumeration RenderablesFilter::renderableTypes
Sets the types of renderables that the filter will affect.
\value RenderablesFilter.Opaque
\value RenderablesFilter.Transparent
*/
QQuick3DShaderUtilsRenderablesFilter::RenderableTypes QQuick3DShaderUtilsRenderablesFilter::renderableTypes() const
{
return static_cast<QQuick3DShaderUtilsRenderablesFilter::RenderableTypes>(command.renderableTypes);
}
QQuick3DShaderUtilsRenderablesFilter::~QQuick3DShaderUtilsRenderablesFilter()
{
}
void QQuick3DShaderUtilsRenderablesFilter::setRenderableTypes(RenderableTypes types)
{
command.renderableTypes = static_cast<QSSGRenderablesFilterCommand::RenderableTypeT>(types.toInt());
}
QQuick3DShaderUtilsPipelineStateOverride::~QQuick3DShaderUtilsPipelineStateOverride()
{
}
bool QQuick3DShaderUtilsPipelineStateOverride::depthTestEnabled() const
{
if (command.m_depthTestEnabled)
return *command.m_depthTestEnabled;
return false;
}
void QQuick3DShaderUtilsPipelineStateOverride::setDepthTestEnabled(bool newDepthTestEnabled)
{
if (command.m_depthTestEnabled && *command.m_depthTestEnabled == newDepthTestEnabled)
return;
command.m_depthTestEnabled = newDepthTestEnabled;
emit depthTestEnabledChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetDepthTestEnabled()
{
command.m_depthTestEnabled.reset();
emit depthTestEnabledChanged();
}
bool QQuick3DShaderUtilsPipelineStateOverride::depthWriteEnabled() const
{
if (command.m_depthWriteEnabled)
return *command.m_depthWriteEnabled;
return false;
}
void QQuick3DShaderUtilsPipelineStateOverride::setDepthWriteEnabled(bool newDepthWriteEnabled)
{
if (command.m_depthWriteEnabled && *command.m_depthWriteEnabled == newDepthWriteEnabled)
return;
command.m_depthWriteEnabled = newDepthWriteEnabled;
emit depthWriteEnabledChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetDepthWriteEnabled()
{
command.m_depthWriteEnabled.reset();
emit depthWriteEnabledChanged();
}
bool QQuick3DShaderUtilsPipelineStateOverride::blendEnabled() const
{
if (command.m_blendEnabled)
return *command.m_blendEnabled;
return false;
}
void QQuick3DShaderUtilsPipelineStateOverride::setBlendEnabled(bool newBlendEnabled)
{
if (command.m_blendEnabled && *command.m_blendEnabled == newBlendEnabled)
return;
command.m_blendEnabled = newBlendEnabled;
emit blendEnabledChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetBlendEnabled()
{
command.m_blendEnabled.reset();
emit blendEnabledChanged();
}
bool QQuick3DShaderUtilsPipelineStateOverride::usesStencilReference() const
{
if (command.m_usesStencilReference)
return *command.m_usesStencilReference;
return false;
}
void QQuick3DShaderUtilsPipelineStateOverride::setUsesStencilReference(bool newUsesStencilReference)
{
if (command.m_usesStencilReference && *command.m_usesStencilReference == newUsesStencilReference)
return;
command.m_usesStencilReference = newUsesStencilReference;
emit usesStencilReferenceChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetUsesStencilReference()
{
command.m_usesStencilReference.reset();
emit usesStencilReferenceChanged();
}
bool QQuick3DShaderUtilsPipelineStateOverride::usesScissor() const
{
if (command.m_usesScissor)
return *command.m_usesScissor;
return false;
}
void QQuick3DShaderUtilsPipelineStateOverride::setUsesScissor(bool newUsesScissor)
{
if (command.m_usesScissor && *command.m_usesScissor == newUsesScissor)
return;
command.m_usesScissor = newUsesScissor;
emit usesScissorChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetUsesScissor()
{
command.m_usesScissor.reset();
emit usesScissorChanged();
}
QQuick3DShaderUtilsPipelineStateOverride::CompareOperation QQuick3DShaderUtilsPipelineStateOverride::depthFunction() const
{
if (command.m_depthFunction)
return CompareOperation(*command.m_depthFunction);
return CompareOperation::Less;
}
void QQuick3DShaderUtilsPipelineStateOverride::setDepthFunction(CompareOperation newDepthFunction)
{
if (command.m_depthFunction && *command.m_depthFunction == QRhiGraphicsPipeline::CompareOp(newDepthFunction))
return;
command.m_depthFunction = QRhiGraphicsPipeline::CompareOp(newDepthFunction);
emit depthFunctionChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetDepthFunction()
{
command.m_depthFunction.reset();
emit depthFunctionChanged();
}
QQuick3DShaderUtilsPipelineStateOverride::CullMode QQuick3DShaderUtilsPipelineStateOverride::cullMode() const
{
if (command.m_cullMode)
return CullMode(*command.m_cullMode);
return CullMode::Back;
}
void QQuick3DShaderUtilsPipelineStateOverride::setCullMode(CullMode newCullMode)
{
if (command.m_cullMode && *command.m_cullMode == QRhiGraphicsPipeline::CullMode(newCullMode))
return;
command.m_cullMode = QRhiGraphicsPipeline::CullMode(newCullMode);
emit cullModeChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetCullMode()
{
command.m_cullMode.reset();
emit cullModeChanged();
}
QQuick3DShaderUtilsPipelineStateOverride::PolygonMode QQuick3DShaderUtilsPipelineStateOverride::polygonMode() const
{
if (command.m_polygonMode)
return PolygonMode(*command.m_polygonMode);
return PolygonMode::Fill;
}
void QQuick3DShaderUtilsPipelineStateOverride::setPolygonMode(PolygonMode newPolygonMode)
{
if (command.m_polygonMode && *command.m_polygonMode == QRhiGraphicsPipeline::PolygonMode(newPolygonMode))
return;
command.m_polygonMode = QRhiGraphicsPipeline::PolygonMode(newPolygonMode);
emit polygonModeChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetPolygonMode()
{
command.m_polygonMode.reset();
emit polygonModeChanged();
}
quint32 QQuick3DShaderUtilsPipelineStateOverride::stencilWriteMask() const
{
if (command.m_stencilWriteMask)
return *command.m_stencilWriteMask;
return 0;
}
void QQuick3DShaderUtilsPipelineStateOverride::setStencilWriteMask(quint32 newStencilWriteMask)
{
if (command.m_stencilWriteMask && *command.m_stencilWriteMask == newStencilWriteMask)
return;
command.m_stencilWriteMask = newStencilWriteMask;
emit stencilWriteMaskChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetStencilWriteMask()
{
command.m_stencilWriteMask.reset();
emit stencilWriteMaskChanged();
}
quint32 QQuick3DShaderUtilsPipelineStateOverride::stencilReference() const
{
if (command.m_stencilReference)
return *command.m_stencilReference;
return 0;
}
void QQuick3DShaderUtilsPipelineStateOverride::setStencilReference(quint32 newStencilReference)
{
if (command.m_stencilReference && *command.m_stencilReference == newStencilReference)
return;
command.m_stencilReference = newStencilReference;
emit stencilReferenceChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetStencilReference()
{
command.m_stencilReference.reset();
emit stencilReferenceChanged();
}
QRectF QQuick3DShaderUtilsPipelineStateOverride::viewport() const
{
if (command.m_viewport) {
const QRhiViewport &vp = *command.m_viewport;
return QRectF(vp.viewport()[0], vp.viewport()[1], vp.viewport()[2], vp.viewport()[3]);
}
return QRectF();
}
void QQuick3DShaderUtilsPipelineStateOverride::setViewport(const QRectF &newViewport)
{
if (command.m_viewport) {
const QRhiViewport &vp = *command.m_viewport;
if (vp.viewport()[0] == newViewport.x() &&
vp.viewport()[1] == newViewport.y() &&
vp.viewport()[2] == newViewport.width() &&
vp.viewport()[3] == newViewport.height())
return;
}
command.m_viewport = QRhiViewport(newViewport.x(), newViewport.y(), newViewport.width(), newViewport.height());
emit viewportChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetViewport()
{
command.m_viewport.reset();
emit viewportChanged();
}
QRect QQuick3DShaderUtilsPipelineStateOverride::scissor() const
{
if (command.m_scissor) {
const QRhiScissor &sc = *command.m_scissor;
return QRect(sc.scissor()[0], sc.scissor()[1], sc.scissor()[2], sc.scissor()[3]);
}
return QRect();
}
void QQuick3DShaderUtilsPipelineStateOverride::setScissor(const QRect &newScissor)
{
if (command.m_viewport) {
const QRhiScissor &sc = *command.m_scissor;
if (sc.scissor()[0] == newScissor.x() &&
sc.scissor()[1] == newScissor.y() &&
sc.scissor()[2] == newScissor.width() &&
sc.scissor()[3] == newScissor.height())
return;
}
command.m_scissor = QRhiScissor(newScissor.x(), newScissor.y(), newScissor.width(), newScissor.height());
emit scissorChanged();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetScissor()
{
command.m_scissor.reset();
}
QQuick3DRenderPassTargetBlend QQuick3DShaderUtilsPipelineStateOverride::targetBlend0() const
{
if (command.m_targetBlend0)
return *command.m_targetBlend0;
return {};
}
void QQuick3DShaderUtilsPipelineStateOverride::setTargetBlend0(const QQuick3DRenderPassTargetBlend &newTargetBlend0)
{
if (command.m_targetBlend0 && QQuick3DRenderPassTargetBlend(*command.m_targetBlend0) == newTargetBlend0)
return;
command.m_targetBlend0 = newTargetBlend0.toRhiTargetBlend();;
emit targetBlend0Changed();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetTargetBlend0()
{
command.m_targetBlend0.reset();
emit targetBlend0Changed();
}
QQuick3DRenderPassTargetBlend QQuick3DShaderUtilsPipelineStateOverride::targetBlend1() const
{
if (command.m_targetBlend1)
return *command.m_targetBlend1;
return {};
}
void QQuick3DShaderUtilsPipelineStateOverride::setTargetBlend1(const QQuick3DRenderPassTargetBlend &newTargetBlend1)
{
if (command.m_targetBlend1 && QQuick3DRenderPassTargetBlend(*command.m_targetBlend1) == newTargetBlend1)
return;
command.m_targetBlend1 = newTargetBlend1.toRhiTargetBlend();
emit targetBlend1Changed();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetTargetBlend1()
{
command.m_targetBlend1.reset();
emit targetBlend1Changed();
}
QQuick3DRenderPassTargetBlend QQuick3DShaderUtilsPipelineStateOverride::targetBlend2() const
{
if (command.m_targetBlend2)
return *command.m_targetBlend2;
return {};
}
void QQuick3DShaderUtilsPipelineStateOverride::setTargetBlend2(const QQuick3DRenderPassTargetBlend &newTargetBlend2)
{
if (command.m_targetBlend2 && QQuick3DRenderPassTargetBlend(*command.m_targetBlend2) == newTargetBlend2)
return;
command.m_targetBlend2 = newTargetBlend2.toRhiTargetBlend();
emit targetBlend2Changed();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetTargetBlend2()
{
command.m_targetBlend2.reset();
emit targetBlend2Changed();
}
QQuick3DRenderPassTargetBlend QQuick3DShaderUtilsPipelineStateOverride::targetBlend3() const
{
if (command.m_targetBlend3)
return *command.m_targetBlend3;
return {};
}
void QQuick3DShaderUtilsPipelineStateOverride::setTargetBlend3(const QQuick3DRenderPassTargetBlend &newTargetBlend3)
{
if (command.m_targetBlend3 && QQuick3DRenderPassTargetBlend(*command.m_targetBlend3) == newTargetBlend3)
return;
command.m_targetBlend3 = newTargetBlend3.toRhiTargetBlend();
emit targetBlend3Changed();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetTargetBlend3()
{
command.m_targetBlend3.reset();
emit targetBlend3Changed();
}
QQuick3DRenderPassTargetBlend QQuick3DShaderUtilsPipelineStateOverride::targetBlend4() const
{
if (command.m_targetBlend4)
return *command.m_targetBlend4;
return {};
}
void QQuick3DShaderUtilsPipelineStateOverride::setTargetBlend4(const QQuick3DRenderPassTargetBlend &newTargetBlend4)
{
if (command.m_targetBlend4 && QQuick3DRenderPassTargetBlend(*command.m_targetBlend4) == newTargetBlend4)
return;
command.m_targetBlend4 = newTargetBlend4.toRhiTargetBlend();
emit targetBlend4Changed();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetTargetBlend4()
{
command.m_targetBlend4.reset();
emit targetBlend4Changed();
}
QQuick3DRenderPassTargetBlend QQuick3DShaderUtilsPipelineStateOverride::targetBlend5() const
{
if (command.m_targetBlend5)
return *command.m_targetBlend5;
return {};
}
void QQuick3DShaderUtilsPipelineStateOverride::setTargetBlend5(const QQuick3DRenderPassTargetBlend &newTargetBlend5)
{
if (command.m_targetBlend5 && QQuick3DRenderPassTargetBlend(*command.m_targetBlend5) == newTargetBlend5)
return;
command.m_targetBlend5 = newTargetBlend5.toRhiTargetBlend();
emit targetBlend5Changed();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetTargetBlend5()
{
command.m_targetBlend5.reset();
emit targetBlend5Changed();
}
QQuick3DRenderPassTargetBlend QQuick3DShaderUtilsPipelineStateOverride::targetBlend6() const
{
if (command.m_targetBlend6)
return *command.m_targetBlend6;
return {};
}
void QQuick3DShaderUtilsPipelineStateOverride::setTargetBlend6(const QQuick3DRenderPassTargetBlend &newTargetBlend6)
{
if (command.m_targetBlend6 && QQuick3DRenderPassTargetBlend(*command.m_targetBlend6) == newTargetBlend6)
return;
command.m_targetBlend6 = newTargetBlend6.toRhiTargetBlend();
emit targetBlend6Changed();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetTargetBlend6()
{
command.m_targetBlend6.reset();
emit targetBlend6Changed();
}
QQuick3DRenderPassTargetBlend QQuick3DShaderUtilsPipelineStateOverride::targetBlend7() const
{
if (command.m_targetBlend7)
return *command.m_targetBlend7;
return {};
}
void QQuick3DShaderUtilsPipelineStateOverride::setTargetBlend7(const QQuick3DRenderPassTargetBlend &newTargetBlend7)
{
if (command.m_targetBlend7 && QQuick3DRenderPassTargetBlend(*command.m_targetBlend7) == newTargetBlend7)
return;
command.m_targetBlend7 = newTargetBlend7.toRhiTargetBlend();
emit targetBlend7Changed();
}
void QQuick3DShaderUtilsPipelineStateOverride::resetTargetBlend7()
{
command.m_targetBlend7.reset();
emit targetBlend7Changed();
}
/*!
\qmltype RenderPassTexture
\inherits Command
\inqmlmodule QtQuick3D
\brief Defines a texture to be used as a render target in a \l {RenderPass}{pass}.
\since 6.11
The RenderPassTexture type is used to specify a texture that will be used
as a render target in a \l RenderPass. You can define the format of the
texture using the \c format property.
Once defined, the texture can be attached as a color or depth attachment. The texture will
be automatically created and managed by the rendering system.
\sa ColorAttachment, DepthTextureAttachment
*/
/*!
\qmlproperty enumeration RenderPassTexture::format
Sets the format of the render target texture.
Available formats are:
\value RenderPassTexture.Unknown
\value RenderPassTexture.RGBA8
\value RenderPassTexture.RGBA16F
\value RenderPassTexture.RGBA32F
\value RenderPassTexture.R8
\value RenderPassTexture.R16
\value RenderPassTexture.R16F
\value RenderPassTexture.R32F
\value RenderPassTexture.Depth16
\value RenderPassTexture.Depth24
\value RenderPassTexture.Depth32
\value RenderPassTexture.Depth24Stencil8
*/
QQuick3DShaderUtilsRenderPassTexture::TextureFormat QQuick3DShaderUtilsRenderPassTexture::format() const
{
return fromRenderTextureFormat(command->format());
}
QQuick3DShaderUtilsRenderPassTexture::~QQuick3DShaderUtilsRenderPassTexture()
{
}
void QQuick3DShaderUtilsRenderPassTexture::setFormat(TextureFormat newFormat)
{
if (!command)
command = std::make_shared<QSSGAllocateTexture>();
command->setFormat(asRenderTextureFormat(newFormat));
}
QSSGRenderTextureFormat QQuick3DShaderUtilsRenderPassTexture::asRenderTextureFormat(TextureFormat fmt)
{
switch (fmt) {
case TextureFormat::Unknown: return QSSGRenderTextureFormat::Unknown;
case TextureFormat::RGBA8: return QSSGRenderTextureFormat::RGBA8;
case TextureFormat::RGBA16F: return QSSGRenderTextureFormat::RGBA16F;
case TextureFormat::RGBA32F: return QSSGRenderTextureFormat::RGBA32F;
case TextureFormat::R8: return QSSGRenderTextureFormat::R8;
case TextureFormat::R16: return QSSGRenderTextureFormat::R16;
case TextureFormat::R16F: return QSSGRenderTextureFormat::R16F;
case TextureFormat::R32F: return QSSGRenderTextureFormat::R32F;
case TextureFormat::Depth16: return QSSGRenderTextureFormat::Depth16;
case TextureFormat::Depth24: return QSSGRenderTextureFormat::Depth24;
case TextureFormat::Depth32: return QSSGRenderTextureFormat::Depth32;
case TextureFormat::Depth24Stencil8: return QSSGRenderTextureFormat::Depth24Stencil8;
default:
break;
}
return QSSGRenderTextureFormat::Unknown;
}
QQuick3DShaderUtilsRenderPassTexture::TextureFormat QQuick3DShaderUtilsRenderPassTexture::fromRenderTextureFormat(QSSGRenderTextureFormat fmt)
{
switch (fmt.format) {
case QSSGRenderTextureFormat::Unknown: return TextureFormat::Unknown;
case QSSGRenderTextureFormat::RGBA8: return TextureFormat::RGBA8;
case QSSGRenderTextureFormat::RGBA16F: return TextureFormat::RGBA16F;
case QSSGRenderTextureFormat::RGBA32F: return TextureFormat::RGBA32F;
case QSSGRenderTextureFormat::R8: return TextureFormat::R8;
case QSSGRenderTextureFormat::R16: return TextureFormat::R16;
case QSSGRenderTextureFormat::R16F: return TextureFormat::R16F;
case QSSGRenderTextureFormat::R32F: return TextureFormat::R32F;
case QSSGRenderTextureFormat::Depth16: return TextureFormat::Depth16;
case QSSGRenderTextureFormat::Depth24: return TextureFormat::Depth24;
case QSSGRenderTextureFormat::Depth32: return TextureFormat::Depth32;
case QSSGRenderTextureFormat::Depth24Stencil8: return TextureFormat::Depth24Stencil8;
default:
break;
}
return TextureFormat::Unknown;
}
/*!
\qmltype ColorAttachment
\inherits Command
\inqmlmodule QtQuick3D
\brief Defines a color attachment for a \l {RenderPass}{pass}.
\since 6.11
The ColorAttachment type is used to specify a color attachment for a \l RenderPass.
The \l name property is used to identify the attachment within the render pass.
If the \l {RenderPass.AugmentMaterial}{AugmentMaterial} mode is used, the name will be
exposed as an output wiht \c name in the fragment shader.
\sa RenderPassTexture
\qml
RenderPass {
// Define a render target texture
RenderPassTexture {
id: colorTexture
format: RenderPassTexture.RGBA16F
}
commands: [
// Define a color attachment using the texture
ColorAttachment {
name: "color0"
target: colorTexture
}
]
}
\endqml
*/
QQuick3DShaderUtilsRenderPassColorAttachment::~QQuick3DShaderUtilsRenderPassColorAttachment()
{
}
QByteArray QQuick3DShaderUtilsRenderPassColorAttachment::name() const
{
return m_name;
}
void QQuick3DShaderUtilsRenderPassColorAttachment::setName(const QByteArray &newName)
{
m_name = newName;
}
QSSGCommand *QQuick3DShaderUtilsRenderPassColorAttachment::cloneCommand()
{
if (target) {
QSSGColorAttachment *cmd = new QSSGColorAttachment(m_name);
cmd->m_textureCmd = target->command;
return cmd;
}
return nullptr;
}
QQuick3DPropertyChangedTracker::~QQuick3DPropertyChangedTracker()
{
}
void QQuick3DPropertyChangedTracker::extractProperties(UniformPropertyList &outUniforms)
{
// Ensure we start with a clean list
outUniforms.clear();
auto metaObject = m_owner->metaObject();
// Properties -> uniforms
const int propCount = metaObject->propertyCount();
int propOffset = metaObject->propertyOffset();
// Classes can have multilayered inheritance structure, so find the actual propOffset by
// walking up the inheritance chain.
const QMetaObject *superClass = metaObject->superClass();
while (superClass && qstrcmp(superClass->className(), m_superClassName) != 0) {
propOffset = superClass->propertyOffset();
superClass = superClass->superClass();
}
static auto getSamplerHint = [](const QQuick3DTexture &texture) {
if (auto *po = QQuick3DObjectPrivate::get(&texture)) {
if (po->type == QQuick3DObjectPrivate::Type::TextureProvider) {
auto textureProvider = static_cast<QQuick3DTextureProviderExtension *>(texture.textureProvider());
switch (textureProvider->samplerHint()) {
case QQuick3DTextureProviderExtension::SamplerHint::Sampler2D:
return QSSGRenderSamplerType::Sampler2D;
case QQuick3DTextureProviderExtension::SamplerHint::Sampler2DArray:
return QSSGRenderSamplerType::Sampler2DArray;
case QQuick3DTextureProviderExtension::SamplerHint::Sampler3D:
return QSSGRenderSamplerType::Sampler3D;
case QQuick3DTextureProviderExtension::SamplerHint::SamplerCube:
return QSSGRenderSamplerType::SamplerCube;
case QQuick3DTextureProviderExtension::SamplerHint::SamplerCubeArray:
return QSSGRenderSamplerType::SamplerCubeArray;
case QQuick3DTextureProviderExtension::SamplerHint::SamplerBuffer:
return QSSGRenderSamplerType::SamplerBuffer;
}
} else if (po->type == QQuick3DObjectPrivate::Type::ImageCube) {
return QSSGRenderSamplerType::SamplerCube;
} else if (texture.textureData() && texture.textureData()->depth() > 0) {
return QSSGRenderSamplerType::Sampler3D;
}
}
return QSSGRenderSamplerType::Sampler2D;
};
const auto addTextureToUniforms = [&](const char *name, QQuick3DTexture *texture, int propertyIndex) {
QSSGRenderImage *ri = static_cast<QSSGRenderImage *>(QQuick3DObjectPrivate::get(texture)->spatialNode);
auto samplerName = QSSGBaseTypeHelpers::toString(getSamplerHint(*texture));
outUniforms.emplace_back(name, samplerName, QVariant::fromValue(ri), QSSGRenderShaderValue::Texture, propertyIndex);
};
// The TextureInput type needs extra watchers for its properties...
const auto addTextureInputWatchers = [&](QMetaProperty property, QQuick3DShaderUtilsTextureInput *textureInput) {
QObject::connect(textureInput, &QQuick3DShaderUtilsTextureInput::enabledChanged, m_owner, [this, property, textureInput](){ addPropertyWatcher(property, DirtyPropertyHint::Reference, textureInput); }, Qt::UniqueConnection);
QObject::connect(textureInput, &QQuick3DShaderUtilsTextureInput::textureChanged, m_owner, [this, property, textureInput](){ addPropertyWatcher(property, DirtyPropertyHint::Reference, textureInput); }, Qt::UniqueConnection);
if (auto *texture = textureInput->texture())
addTextureToUniforms(property.name(), texture, property.propertyIndex());
};
for (int i = propOffset; i != propCount; ++i) {
const QMetaProperty property = metaObject->property(i);
if (Q_UNLIKELY(!property.isValid()))
continue;
const char *name = property.name();
QMetaType propType = property.metaType();
QVariant propValue = property.read(m_owner);
if (propType == QMetaType(QMetaType::QVariant))
propType = propValue.metaType();
const auto type = QSSGShaderUtils::uniformType(propType);
if (type != QSSGRenderShaderValue::Unknown) {
outUniforms.emplace_back(name, QSSGShaderUtils::uniformTypeName(propType),
propValue, QSSGShaderUtils::uniformType(propType), i);
addPropertyWatcher(property, DirtyPropertyHint::Value);
} else {
if (propType.id() >= QMetaType::User) {
if (propType.id() == qMetaTypeId<QQuick3DTexture *>()) {
if (QQuick3DTexture *texture = property.read(m_owner).value<QQuick3DTexture *>()) {
addTextureToUniforms(name, texture, i);
addPropertyWatcher(property, DirtyPropertyHint::Reference, texture);
}
} else if (propType.id() == qMetaTypeId<QQuick3DShaderUtilsTextureInput *>()) { // For compatibility, also check for texture input types
if (QQuick3DShaderUtilsTextureInput *textureInput = property.read(m_owner).value<QQuick3DShaderUtilsTextureInput *>(); textureInput && textureInput->texture()) {
addTextureInputWatchers(property, textureInput);
addPropertyWatcher(property, DirtyPropertyHint::Reference, textureInput);
}
}
} else if (propType == QMetaType(QMetaType::QObjectStar)) {
if (QQuick3DTexture *texture = qobject_cast<QQuick3DTexture *>(propValue.value<QObject *>())) {
addTextureToUniforms(name, texture, i);
addPropertyWatcher(property, DirtyPropertyHint::Reference, texture);
} else if (QQuick3DShaderUtilsTextureInput *textureInput = qobject_cast<QQuick3DShaderUtilsTextureInput *>(propValue.value<QObject *>()); textureInput && textureInput->texture()) {
addTextureInputWatchers(property, textureInput);
addPropertyWatcher(property, DirtyPropertyHint::Reference, textureInput);
}
}
}
}
}
void QQuick3DPropertyChangedTracker::addPropertyWatcher(QMetaProperty property, DirtyPropertyHint hint, QQuick3DObject *object)
{
if (property.isValid() && property.hasNotifySignal()) {
// Check if we're already watching this property.
const auto pid = property.propertyIndex();
Q_ASSERT(pid != -1);
auto it = std::find_if(m_trackedProperties.begin(), m_trackedProperties.end(), [pid](const Tracked &tp) { return tp.pid == pid; });
const bool found = (it != m_trackedProperties.end());
QQuick3DObject *oldObj = nullptr;
if (!found) {
QQuick3DPropertyWatcher *watcher = new QQuick3DPropertyWatcher(this, property);
m_trackedProperties.push_back({watcher, object, pid});
it = std::prev(m_trackedProperties.end());
} else {
oldObj = it->object;
it->object = object;
}
if (hint == DirtyPropertyHint::Reference) {
const auto &sm = QQuick3DObjectPrivate::get(m_owner)->sceneManager;
// First check if the object changed
const bool changed = (oldObj != object);
// Deref old object
if (changed && oldObj) {
QQuick3DObjectPrivate::get(oldObj)->derefSceneManager();
QObject::disconnect(oldObj, &QObject::destroyed, m_owner, nullptr);
}
// Ref new object
if (changed && object) {
QQuick3DObjectPrivate::get(object)->refSceneManager(*sm);
QObject::connect(object, &QObject::destroyed, m_owner, [this, property](QObject *obj) {
Q_UNUSED(obj);
addPropertyWatcher(property, DirtyPropertyHint::Reference, nullptr);
});
}
}
markTrackedPropertyDirty(property, hint);
}
}
void QQuick3DPropertyChangedTracker::markTrackedPropertyDirty(QMetaProperty property, DirtyPropertyHint hint)
{
Q_UNUSED(property);
Q_UNUSED(hint);
QSSG_CHECK_X(false, "QQuick3DPropertyChangedTracker::onPropertyDirty implementation missing");
}
QQuick3DPropertyWatcher::QQuick3DPropertyWatcher(QQuick3DPropertyChangedTracker *tracker, QMetaProperty property)
: m_tracker(tracker)
, m_property(property)
{
Q_ASSERT(tracker != nullptr);
Q_ASSERT(property.isValid() && property.hasNotifySignal());
const bool isPointerType = (property.metaType().flags().testFlag(QMetaType::IsPointer));
if (!isPointerType) {
// Value change notification
const auto idx = staticMetaObject.indexOfSlot("onValuePropertyChanged()");
if (QSSG_GUARD_X(idx != -1, "Method not found!")) {
auto onPropertyChangedMethod = staticMetaObject.method(idx);
connect(m_tracker->m_owner, property.notifySignal(), this, onPropertyChangedMethod);
}
} else {
// Pointer value change notification
const auto idx = staticMetaObject.indexOfSlot("onPointerPropertyChanged()");
if (QSSG_GUARD_X(idx != -1, "Method not found!")) {
auto onPointerPropertyChangedMethod = staticMetaObject.method(idx);
connect(m_tracker->m_owner, property.notifySignal(), this, onPointerPropertyChangedMethod);
}
}
}
void QQuick3DPropertyWatcher::onValuePropertyChanged()
{
m_tracker->markTrackedPropertyDirty(m_property, QQuick3DPropertyChangedTracker::DirtyPropertyHint::Value);
}
void QQuick3DPropertyWatcher::onPointerPropertyChanged()
{
m_tracker->markTrackedPropertyDirty(m_property, QQuick3DPropertyChangedTracker::DirtyPropertyHint::Reference);;
}
/*!
\qmltype AddDefine
\inherits Command
\inqmlmodule QtQuick3D
\brief Adds a preprocessor define to the shader compilation for a \l {RenderPass}{pass}.
\since 6.11
The AddDefine type is used to specify a preprocessor define that will be
added to the shader compilation process for a \l RenderPass. This allows
you to customize the shader behavior by defining specific macros.
*/
QQuick3DShaderUtilsRenderPassAddDefine::QQuick3DShaderUtilsRenderPassAddDefine()
{
}
QQuick3DShaderUtilsRenderPassAddDefine::~QQuick3DShaderUtilsRenderPassAddDefine() = default;
QSSGCommand *QQuick3DShaderUtilsRenderPassAddDefine::cloneCommand() {
QSSGAddShaderDefine *cmd = new QSSGAddShaderDefine(command);
return cmd;
}
/*!
\qmltype DepthTextureAttachment
\inherits Command
\inqmlmodule QtQuick3D
\brief Defines a depth texture attachment for a \l {RenderPass}{pass}.
\since 6.11
The DepthTextureAttachment type is used to specify a depth texture
that will be used as a depth attachment in a \l RenderPass. The texture
will be automatically created and managed by the rendering system.
\sa RenderPassTexture
*/
QQuick3DShaderUtilsRenderPassDepthTextureAttachment::~QQuick3DShaderUtilsRenderPassDepthTextureAttachment()
{
}
QSSGCommand *QQuick3DShaderUtilsRenderPassDepthTextureAttachment::cloneCommand()
{
if (target) {
QSSGDepthTextureAttachment *cmd = new QSSGDepthTextureAttachment(QByteArrayLiteral("__depth__"));
cmd->m_textureCmd = target->command;
return cmd;
}
return nullptr;
}
QQuick3DShaderUtilsRenderPassDepthStencilAttachment::~QQuick3DShaderUtilsRenderPassDepthStencilAttachment()
{
}
QSSGCommand *QQuick3DShaderUtilsRenderPassDepthStencilAttachment::cloneCommand()
{
QSSGDepthStencilAttachment *cmd = new QSSGDepthStencilAttachment;
return cmd;
}
QT_END_NAMESPACE
|