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
|
# SymbolsHelper-Confirmed: 6.8.2 amd64
libQt63DExtras.so.6 libqt63dextras6 #MINVER#
* Build-Depends-Package: qt6-3d-dev
NonQt@NonQt 6.7.2
Qt_6@Qt_6 6.6.1
Qt_6_PRIVATE_API@Qt_6_PRIVATE_API 6.6.1
_ZGVZN9QMetaType21registerConverterImplI5QListIPN10Qt3DExtras16QSpriteSheetItemEE9QIterableI13QMetaSequenceEEEbSt8functionIFbPKvPvEES_S_E10unregister@Qt_6 6.6.1
_ZGVZN9QMetaType23registerMutableViewImplI5QListIPN10Qt3DExtras16QSpriteSheetItemEE9QIterableI13QMetaSequenceEEEbSt8functionIFbPvSA_EES_S_E10unregister@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh11setMirroredEb@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh12widthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh13heightChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh15mirroredChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh17setMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh21meshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh8setWidthEf@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMesh9setHeightEf@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMeshC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMeshC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMeshD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMeshD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras10QPlaneMeshD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh13radiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh14setMinorRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh18minorRadiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh9setRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMesh9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMeshC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMeshC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMeshD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMeshD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras10QTorusMeshD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindow11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindow11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindow11resizeEventEP12QResizeEvent@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindow13setRootEntityEPN8Qt3DCore7QEntityE@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindow14registerAspectEPN8Qt3DCore15QAbstractAspectE@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindow14registerAspectERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindow16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindow19setActiveFrameGraphEPN10Qt3DRender15QFrameGraphNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindow5eventEP6QEvent@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindow9showEventEP10QShowEvent@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindowC1EP7QScreenN10Qt3DRender3APIE@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindowC2EP7QScreenN10Qt3DRender3APIE@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindowD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindowD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras10Qt3DWindowD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh10setXExtentEf@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh10setYExtentEf@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh10setZExtentEf@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh14xExtentChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh14yExtentChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh14zExtentChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh19setXYMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh19setXZMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh19setYZMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh23xyMeshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh23xzMeshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMesh23yzMeshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMeshC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMeshC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMeshD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMeshD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras11QCuboidMeshD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh13radiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh19setGenerateTangentsEb@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh23generateTangentsChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh9setRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMesh9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMeshC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMeshC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMeshD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMeshD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras11QSphereMeshD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGrid10setColumnsEi@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGrid11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGrid11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGrid11rowsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGrid14columnsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGrid16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGrid7setRowsEi@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGridC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGridC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGridD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGridD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras11QSpriteGridD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheet10setSpritesE5QListIPNS_16QSpriteSheetItemEE@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheet11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheet11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheet12removeSpriteEPNS_16QSpriteSheetItemE@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheet14spritesChangedE5QListIPNS_16QSpriteSheetItemEE@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheet16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheet9addSpriteEPNS_16QSpriteSheetItemE@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheet9addSpriteEiiii@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheetC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheetC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheetD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheetD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras12QSpriteSheetD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry12setTopRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry13lengthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry13updateIndicesEv@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry14updateVerticesEv@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry15setBottomRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry15setHasTopEndcapEb@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry16topRadiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry18setHasBottomEndcapEb@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry19bottomRadiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry19hasTopEndcapChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry22hasBottomEndcapChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry9setLengthEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometry9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometryC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometryC1ERNS_20QConeGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras13QConeGeometryC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometryC2ERNS_20QConeGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras13QConeGeometryD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometryD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QConeGeometryD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh13lengthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh13radiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh9setLengthEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh9setRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMesh9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMeshC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMeshC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMeshD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMeshD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QCylinderMeshD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntity11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntity11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntity11setBaseNameERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntity12setExtensionERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntity15baseNameChangedERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntity16extensionChangedERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntity16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntity22setGammaCorrectEnabledEb@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntity26gammaCorrectEnabledChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntityC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntityC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntityD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntityD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QSkyboxEntityD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity11fontChangedERK5QFont@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity11textChangedERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity12colorChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity12setAlignmentE6QFlagsIN2Qt13AlignmentFlagEE@Qt_6 6.8.2
_ZN10Qt3DExtras13QText2DEntity12widthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity13heightChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity7setFontERK5QFont@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity7setTextERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity8setColorERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity8setWidthEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntity9setHeightEf@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntityC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntityC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntityD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntityD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras13QText2DEntityD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial10setDiffuseERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial11betaChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial11coolChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial11setSpecularERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial11warmChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial12alphaChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial12setShininessEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial14diffuseChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial15specularChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial16shininessChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial7setBetaEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial7setCoolERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial7setWarmERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterial8setAlphaEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterialC1ERNS_21QGoochMaterialPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras14QGoochMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterialC2ERNS_21QGoochMaterialPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras14QGoochMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QGoochMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial10setAmbientERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial10setDiffuseERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial11setSpecularERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial12setShininessEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial14ambientChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial14diffuseChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial15specularChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial16shininessChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QPhongMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry11setMirroredEb@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry12widthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry13heightChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry13setResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry13updateIndicesEv@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry14updateVerticesEv@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry15mirroredChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry17resolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry8setWidthEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometry9setHeightEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometryC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometryC1ERNS_21QPlaneGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras14QPlaneGeometryC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometryC2ERNS_21QPlaneGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras14QPlaneGeometryD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometryD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QPlaneGeometryD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry13radiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry13updateIndicesEv@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry14setMinorRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry14updateVerticesEv@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry18minorRadiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry9setRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometry9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometryC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometryC1ERNS_21QTorusGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras14QTorusGeometryC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometryC2ERNS_21QTorusGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras14QTorusGeometryD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometryD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras14QTorusGeometryD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry10setXExtentEf@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry10setYExtentEf@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry10setZExtentEf@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry13updateIndicesEv@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry14updateVerticesEv@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry14xExtentChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry14yExtentChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry14zExtentChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry19setXYMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry19setXZMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry19setYZMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry23xyMeshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry23xzMeshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometry23yzMeshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometryC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometryC1ERNS_22QCuboidGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras15QCuboidGeometryC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometryC2ERNS_22QCuboidGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras15QCuboidGeometryD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometryD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras15QCuboidGeometryD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry13radiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry13updateIndicesEv@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry14updateVerticesEv@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry19setGenerateTangentsEb@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry23generateTangentsChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry9setRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometry9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometryC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometryC1ERNS_22QSphereGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras15QSphereGeometryC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometryC2ERNS_22QSphereGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras15QSphereGeometryD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometryD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras15QSphereGeometryD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer10setSurfaceEP7QObject@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer12gammaChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer13cameraChangedEPN8Qt3DCore7QEntityE@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer13setClearColorERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer14surfaceChangedEP7QObject@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer15setViewportRectERK6QRectF@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer17clearColorChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer17setBuffersToClearEN10Qt3DRender13QClearBuffers10BufferTypeE@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer19setShowDebugOverlayEb@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer19viewportRectChangedERK6QRectF@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer21buffersToClearChangedEN10Qt3DRender13QClearBuffers10BufferTypeE@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer23showDebugOverlayChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer24setFrustumCullingEnabledEb@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer27setExternalRenderTargetSizeERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer28frustumCullingEnabledChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer31externalRenderTargetSizeChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer8setGammaEf@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRenderer9setCameraEPN8Qt3DCore7QEntityE@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRendererC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRendererC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRendererD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRendererD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras16QForwardRendererD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem12widthChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem13heightChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem4setXEi@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem4setYEi@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem8setWidthEi@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem8xChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem8yChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItem9setHeightEi@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItemC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras16QSpriteSheetItemC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial10setTextureEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial14textureChangedEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial16setTextureOffsetE9QVector2D@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial19setTextureTransformERK14QGenericMatrixILi3ELi3EfE@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial20textureOffsetChangedE9QVector2D@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial23setAlphaBlendingEnabledEb@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial23textureTransformChangedERK14QGenericMatrixILi3ELi3EfE@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterial27alphaBlendingEnabledChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras16QTextureMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView12setTopRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView13lengthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView15setBottomRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView15setHasTopEndcapEb@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView16topRadiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView18setHasBottomEndcapEb@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView19bottomRadiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView19hasTopEndcapChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView22hasBottomEndcapChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView9setLengthEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryView9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryViewC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryViewC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryViewD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryViewD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras17QConeGeometryViewD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry13lengthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry13radiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry13updateIndicesEv@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry14updateVerticesEv@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry9setLengthEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry9setRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometry9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometryC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometryC1ERNS_24QCylinderGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras17QCylinderGeometryC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometryC2ERNS_24QCylinderGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras17QCylinderGeometryD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometryD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras17QCylinderGeometryD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMesh11fontChangedERK5QFont@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMesh11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMesh11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMesh11textChangedERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMesh12depthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMesh16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMesh7setFontERK5QFont@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMesh7setTextERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMesh8setDepthEf@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMeshC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMeshC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMeshD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMeshD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras17QExtrudedTextMeshD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView11setMirroredEb@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView12widthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView13heightChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView15mirroredChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView17setMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView21meshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView8setWidthEf@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryView9setHeightEf@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryViewC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryViewC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryViewD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryViewD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras18QPlaneGeometryViewD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView13radiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView14setMinorRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView18minorRadiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView9setRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryView9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryViewC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryViewC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryViewD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryViewD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras18QTorusGeometryViewD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras18setupWindowSurfaceEP7QWindowN10Qt3DRender3APIE@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView10setXExtentEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView10setYExtentEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView10setZExtentEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView14xExtentChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView14yExtentChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView14zExtentChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView19setXYMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView19setXZMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView19setYZMeshResolutionERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView23xyMeshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView23xzMeshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryView23yzMeshResolutionChangedERK5QSize@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryViewC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryViewC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryViewD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryViewD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QCuboidGeometryViewD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial10setAmbientERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial10setDiffuseEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial11setSpecularERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial12setShininessEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial14ambientChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial14diffuseChangedEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial15setTextureScaleEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial15specularChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial16shininessChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterial19textureScaleChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QDiffuseMapMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial12setBaseColorERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial12setMetalnessERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial12setRoughnessERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial13normalChangedERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial15setTextureScaleEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial16baseColorChangedERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial16metalnessChangedERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial16roughnessChangedERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial19setAmbientOcclusionERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial19textureScaleChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial23ambientOcclusionChangedERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterial9setNormalERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterialC1ERNS_26QMetalRoughMaterialPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterialC2ERNS_26QMetalRoughMaterialPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QMetalRoughMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial10setAmbientERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial10setDiffuseERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial11setSpecularERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial12setShininessEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial14ambientChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial14diffuseChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial15setInterpolatorEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial15specularChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial16shininessChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterial19interpolatorChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QMorphPhongMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial10setAmbientERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial10setDiffuseERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial11setSpecularERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial12alphaChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial12setShininessEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial14ambientChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial14diffuseChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial15setSourceRgbArgEN10Qt3DRender23QBlendEquationArguments8BlendingE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial15specularChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial16shininessChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial17setSourceAlphaArgEN10Qt3DRender23QBlendEquationArguments8BlendingE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial19setBlendFunctionArgEN10Qt3DRender14QBlendEquation13BlendFunctionE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial19sourceRgbArgChangedEN10Qt3DRender23QBlendEquationArguments8BlendingE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial20setDestinationRgbArgEN10Qt3DRender23QBlendEquationArguments8BlendingE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial21sourceAlphaArgChangedEN10Qt3DRender23QBlendEquationArguments8BlendingE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial22setDestinationAlphaArgEN10Qt3DRender23QBlendEquationArguments8BlendingE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial23blendFunctionArgChangedEN10Qt3DRender14QBlendEquation13BlendFunctionE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial24destinationRgbArgChangedEN10Qt3DRender23QBlendEquationArguments8BlendingE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial26destinationAlphaArgChangedEN10Qt3DRender23QBlendEquationArguments8BlendingE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterial8setAlphaEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QPhongAlphaMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView13radiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView19setGenerateTangentsEb@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView23generateTangentsChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView9setRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryView9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryViewC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryViewC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryViewD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryViewD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras19QSphereGeometryViewD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheet10setTextureEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheet11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheet11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheet14textureChangedEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheet15setCurrentIndexEi@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheet16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheet19currentIndexChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheet23textureTransformChangedERK14QGenericMatrixILi3ELi3EfE@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheetC1ERNS_27QAbstractSpriteSheetPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheetC2ERNS_27QAbstractSpriteSheetPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheetD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheetD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras20QAbstractSpriteSheetD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView13lengthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView13radiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView9setLengthEf@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView9setRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryView9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryViewC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryViewC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryViewD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryViewD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras21QCylinderGeometryViewD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometry11fontChangedERK5QFont@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometry11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometry11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometry11textChangedERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometry12depthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometry16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometry7setFontERK5QFont@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometry7setTextERK7QString@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometry8setDepthEf@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometryC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometryC1ERNS_28QExtrudedTextGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometryC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometryC2ERNS_28QExtrudedTextGeometryPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometryD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometryD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras21QExtrudedTextGeometryD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraController10moveCameraERKNS_25QAbstractCameraController10InputStateEf@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraController11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraController11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraController11setUpVectorERK9QVector3D@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController13setInversePanEb@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController14setInverseTiltEb@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController14setZoomInLimitEf@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraController15upVectorChangedERK9QVector3D@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraController17inversePanChangedEb@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController18inverseTiltChangedEb@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController18zoomInLimitChangedEv@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraController20setInverseXTranslateEb@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController20setInverseYTranslateEb@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController24inverseXTranslateChangedEb@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController24inverseYTranslateChangedEb@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController26setZoomTranslateViewCenterEb@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraController30zoomTranslateViewCenterChangedEb@Qt_6 6.7.2
_ZN10Qt3DExtras22QOrbitCameraControllerC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraControllerC1ERNS_29QOrbitCameraControllerPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras22QOrbitCameraControllerC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraControllerC2ERNS_29QOrbitCameraControllerPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras22QOrbitCameraControllerD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraControllerD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras22QOrbitCameraControllerD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras23QPerVertexColorMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras23QPerVertexColorMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras23QPerVertexColorMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras23QPerVertexColorMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras23QPerVertexColorMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras23QPerVertexColorMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras23QPerVertexColorMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras23QPerVertexColorMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial10setAmbientERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial10setDiffuseERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial11setSpecularERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial12setShininessEf@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial13normalChangedERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial14ambientChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial14diffuseChangedERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial15setTextureScaleEf@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial15specularChangedERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial16shininessChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial19textureScaleChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial23setAlphaBlendingEnabledEb@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial27alphaBlendingEnabledChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterial9setNormalERK8QVariant@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras24QDiffuseSpecularMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController12setLookSpeedEf@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController13cameraChangedEv@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController14setLinearSpeedEf@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController15setAccelerationEf@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController15setDecelerationEf@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController16lookSpeedChangedEv@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController18linearSpeedChangedEv@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController19accelerationChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController19decelerationChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraController9setCameraEPN10Qt3DRender7QCameraE@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraControllerC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraControllerC1ERNS_32QAbstractCameraControllerPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras25QAbstractCameraControllerC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraControllerC2ERNS_32QAbstractCameraControllerPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras25QAbstractCameraControllerD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraControllerD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras25QAbstractCameraControllerD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial10setAmbientERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial10setDiffuseEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial11setSpecularERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial12setShininessEf@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial13normalChangedEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial14ambientChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial14diffuseChangedEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial15setTextureScaleEf@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial15specularChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial16shininessChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial19textureScaleChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterial9setNormalEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterialC1ERNS_32QNormalDiffuseMapMaterialPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterialC2ERNS_32QNormalDiffuseMapMaterialPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras25QNormalDiffuseMapMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial10setAmbientERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial10setDiffuseEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial11setSpecularEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial12setShininessEf@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial14ambientChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial14diffuseChangedEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial15setTextureScaleEf@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial15specularChangedEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial16shininessChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterial19textureScaleChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras27QDiffuseSpecularMapMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras28QFirstPersonCameraController10moveCameraERKNS_25QAbstractCameraController10InputStateEf@Qt_6 6.6.1
_ZN10Qt3DExtras28QFirstPersonCameraController11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras28QFirstPersonCameraController11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras28QFirstPersonCameraController16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras28QFirstPersonCameraControllerC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras28QFirstPersonCameraControllerC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras28QFirstPersonCameraControllerD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras28QFirstPersonCameraControllerD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras28QFirstPersonCameraControllerD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras30QNormalDiffuseMapAlphaMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras30QNormalDiffuseMapAlphaMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras30QNormalDiffuseMapAlphaMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras30QNormalDiffuseMapAlphaMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras30QNormalDiffuseMapAlphaMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras30QNormalDiffuseMapAlphaMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras30QNormalDiffuseMapAlphaMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras30QNormalDiffuseMapAlphaMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial10setAmbientERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial10setDiffuseEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial11setSpecularEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial12setShininessEf@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial13normalChangedEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial14ambientChangedERK6QColor@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial14diffuseChangedEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial15setTextureScaleEf@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial15specularChangedEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial16shininessChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial19textureScaleChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterial9setNormalEPN10Qt3DRender16QAbstractTextureE@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterialC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterialC1ERNS_40QNormalDiffuseSpecularMapMaterialPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterialC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterialC2ERNS_40QNormalDiffuseSpecularMapMaterialPrivateEPN8Qt3DCore5QNodeE@Qt_6_PRIVATE_API 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterialD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterialD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras33QNormalDiffuseSpecularMapMaterialD2Ev@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh11qt_metacallEN11QMetaObject4CallEiPPv@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh11qt_metacastEPKc@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh12ringsChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh12setTopRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh13lengthChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh13slicesChangedEi@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh15setBottomRadiusEf@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh15setHasTopEndcapEb@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh16staticMetaObjectE@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh16topRadiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh18setHasBottomEndcapEb@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh19bottomRadiusChangedEf@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh19hasTopEndcapChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh22hasBottomEndcapChangedEb@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh8setRingsEi@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh9setLengthEf@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMesh9setSlicesEi@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMeshC1EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMeshC2EPN8Qt3DCore5QNodeE@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMeshD0Ev@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMeshD1Ev@Qt_6 6.6.1
_ZN10Qt3DExtras9QConeMeshD2Ev@Qt_6 6.6.1
_ZN13QMetaSequence12MetaSequenceI5QListIPN10Qt3DExtras16QSpriteSheetItemEEE5valueE@Qt_6 6.6.1
_ZNK10Qt3DExtras10QPlaneMesh10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10QPlaneMesh14meshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10QPlaneMesh5widthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10QPlaneMesh6heightEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10QPlaneMesh8mirroredEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10QTorusMesh10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10QTorusMesh11minorRadiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10QTorusMesh5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10QTorusMesh6radiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10QTorusMesh6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10Qt3DWindow10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10Qt3DWindow14renderSettingsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10Qt3DWindow16activeFrameGraphEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10Qt3DWindow17defaultFrameGraphEv@Qt_6 6.6.1
_ZNK10Qt3DExtras10Qt3DWindow6cameraEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QCuboidMesh10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QCuboidMesh16xyMeshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QCuboidMesh16xzMeshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QCuboidMesh16yzMeshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QCuboidMesh7xExtentEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QCuboidMesh7yExtentEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QCuboidMesh7zExtentEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QSphereMesh10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QSphereMesh16generateTangentsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QSphereMesh5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QSphereMesh6radiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QSphereMesh6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QSpriteGrid10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QSpriteGrid4rowsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras11QSpriteGrid7columnsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras12QSpriteSheet10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras12QSpriteSheet7spritesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry12bottomRadiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry12hasTopEndcapEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry14indexAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry15hasBottomEndcapEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry15normalAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry17positionAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry17texCoordAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry6lengthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QConeGeometry9topRadiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QCylinderMesh10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QCylinderMesh5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QCylinderMesh6lengthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QCylinderMesh6radiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QCylinderMesh6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QSkyboxEntity10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QSkyboxEntity21isGammaCorrectEnabledEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QSkyboxEntity8baseNameEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QSkyboxEntity9extensionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QText2DEntity10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QText2DEntity4fontEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QText2DEntity4textEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QText2DEntity5colorEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QText2DEntity5widthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QText2DEntity6heightEv@Qt_6 6.6.1
_ZNK10Qt3DExtras13QText2DEntity9alignmentEv@Qt_6 6.8.2
_ZNK10Qt3DExtras14QGoochMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QGoochMaterial4betaEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QGoochMaterial4coolEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QGoochMaterial4warmEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QGoochMaterial5alphaEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QGoochMaterial7diffuseEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QGoochMaterial8specularEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QGoochMaterial9shininessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPhongMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPhongMaterial7ambientEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPhongMaterial7diffuseEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPhongMaterial8specularEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPhongMaterial9shininessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPlaneGeometry10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPlaneGeometry10resolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPlaneGeometry14indexAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPlaneGeometry15normalAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPlaneGeometry16tangentAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPlaneGeometry17positionAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPlaneGeometry17texCoordAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPlaneGeometry5widthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPlaneGeometry6heightEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QPlaneGeometry8mirroredEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QTorusGeometry10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QTorusGeometry11minorRadiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QTorusGeometry14indexAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QTorusGeometry15normalAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QTorusGeometry17positionAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QTorusGeometry17texCoordAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QTorusGeometry5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QTorusGeometry6radiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras14QTorusGeometry6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry14indexAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry15normalAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry16tangentAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry16xyMeshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry16xzMeshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry16yzMeshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry17positionAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry17texCoordAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry7xExtentEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry7yExtentEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QCuboidGeometry7zExtentEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QSphereGeometry10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QSphereGeometry14indexAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QSphereGeometry15normalAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QSphereGeometry16generateTangentsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QSphereGeometry16tangentAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QSphereGeometry17positionAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QSphereGeometry17texCoordAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QSphereGeometry5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QSphereGeometry6radiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras15QSphereGeometry6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QForwardRenderer10clearColorEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QForwardRenderer10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QForwardRenderer12viewportRectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QForwardRenderer14buffersToClearEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QForwardRenderer16showDebugOverlayEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QForwardRenderer23isFrustumCullingEnabledEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QForwardRenderer24externalRenderTargetSizeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QForwardRenderer5gammaEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QForwardRenderer6cameraEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QForwardRenderer7surfaceEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QSpriteSheetItem10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QSpriteSheetItem1xEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QSpriteSheetItem1yEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QSpriteSheetItem5widthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QSpriteSheetItem6heightEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QTextureMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QTextureMaterial13textureOffsetEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QTextureMaterial16textureTransformEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QTextureMaterial22isAlphaBlendingEnabledEv@Qt_6 6.6.1
_ZNK10Qt3DExtras16QTextureMaterial7textureEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QConeGeometryView10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QConeGeometryView12bottomRadiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QConeGeometryView12hasTopEndcapEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QConeGeometryView15hasBottomEndcapEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QConeGeometryView5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QConeGeometryView6lengthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QConeGeometryView6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QConeGeometryView9topRadiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QCylinderGeometry10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QCylinderGeometry14indexAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QCylinderGeometry15normalAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QCylinderGeometry17positionAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QCylinderGeometry17texCoordAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QCylinderGeometry5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QCylinderGeometry6lengthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QCylinderGeometry6radiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QCylinderGeometry6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QExtrudedTextMesh10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QExtrudedTextMesh4fontEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QExtrudedTextMesh4textEv@Qt_6 6.6.1
_ZNK10Qt3DExtras17QExtrudedTextMesh5depthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras18QPlaneGeometryView10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras18QPlaneGeometryView14meshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras18QPlaneGeometryView5widthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras18QPlaneGeometryView6heightEv@Qt_6 6.6.1
_ZNK10Qt3DExtras18QPlaneGeometryView8mirroredEv@Qt_6 6.6.1
_ZNK10Qt3DExtras18QTorusGeometryView10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras18QTorusGeometryView11minorRadiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras18QTorusGeometryView5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras18QTorusGeometryView6radiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras18QTorusGeometryView6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QCuboidGeometryView10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QCuboidGeometryView16xyMeshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QCuboidGeometryView16xzMeshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QCuboidGeometryView16yzMeshResolutionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QCuboidGeometryView7xExtentEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QCuboidGeometryView7yExtentEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QCuboidGeometryView7zExtentEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QDiffuseMapMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QDiffuseMapMaterial12textureScaleEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QDiffuseMapMaterial7ambientEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QDiffuseMapMaterial7diffuseEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QDiffuseMapMaterial8specularEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QDiffuseMapMaterial9shininessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMetalRoughMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMetalRoughMaterial12textureScaleEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMetalRoughMaterial16ambientOcclusionEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMetalRoughMaterial6normalEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMetalRoughMaterial9baseColorEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMetalRoughMaterial9metalnessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMetalRoughMaterial9roughnessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMorphPhongMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMorphPhongMaterial12interpolatorEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMorphPhongMaterial7ambientEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMorphPhongMaterial7diffuseEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMorphPhongMaterial8specularEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QMorphPhongMaterial9shininessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial12sourceRgbArgEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial14sourceAlphaArgEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial16blendFunctionArgEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial17destinationRgbArgEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial19destinationAlphaArgEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial5alphaEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial7ambientEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial7diffuseEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial8specularEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QPhongAlphaMaterial9shininessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QSphereGeometryView10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QSphereGeometryView16generateTangentsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QSphereGeometryView5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QSphereGeometryView6radiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras19QSphereGeometryView6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras20QAbstractSpriteSheet10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras20QAbstractSpriteSheet12currentIndexEv@Qt_6 6.6.1
_ZNK10Qt3DExtras20QAbstractSpriteSheet16textureTransformEv@Qt_6 6.6.1
_ZNK10Qt3DExtras20QAbstractSpriteSheet7textureEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QCylinderGeometryView10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QCylinderGeometryView5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QCylinderGeometryView6lengthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QCylinderGeometryView6radiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QCylinderGeometryView6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QExtrudedTextGeometry10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QExtrudedTextGeometry14indexAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QExtrudedTextGeometry15extrusionLengthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QExtrudedTextGeometry15normalAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QExtrudedTextGeometry17positionAttributeEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QExtrudedTextGeometry4fontEv@Qt_6 6.6.1
_ZNK10Qt3DExtras21QExtrudedTextGeometry4textEv@Qt_6 6.6.1
_ZNK10Qt3DExtras22QOrbitCameraController10inversePanEv@Qt_6 6.7.2
_ZNK10Qt3DExtras22QOrbitCameraController10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras22QOrbitCameraController11inverseTiltEv@Qt_6 6.7.2
_ZNK10Qt3DExtras22QOrbitCameraController11zoomInLimitEv@Qt_6 6.6.1
_ZNK10Qt3DExtras22QOrbitCameraController17inverseXTranslateEv@Qt_6 6.7.2
_ZNK10Qt3DExtras22QOrbitCameraController17inverseYTranslateEv@Qt_6 6.7.2
_ZNK10Qt3DExtras22QOrbitCameraController23zoomTranslateViewCenterEv@Qt_6 6.7.2
_ZNK10Qt3DExtras22QOrbitCameraController8upVectorEv@Qt_6 6.7.2
_ZNK10Qt3DExtras23QPerVertexColorMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras24QDiffuseSpecularMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras24QDiffuseSpecularMaterial12textureScaleEv@Qt_6 6.6.1
_ZNK10Qt3DExtras24QDiffuseSpecularMaterial22isAlphaBlendingEnabledEv@Qt_6 6.6.1
_ZNK10Qt3DExtras24QDiffuseSpecularMaterial6normalEv@Qt_6 6.6.1
_ZNK10Qt3DExtras24QDiffuseSpecularMaterial7ambientEv@Qt_6 6.6.1
_ZNK10Qt3DExtras24QDiffuseSpecularMaterial7diffuseEv@Qt_6 6.6.1
_ZNK10Qt3DExtras24QDiffuseSpecularMaterial8specularEv@Qt_6 6.6.1
_ZNK10Qt3DExtras24QDiffuseSpecularMaterial9shininessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QAbstractCameraController10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QAbstractCameraController11linearSpeedEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QAbstractCameraController11mouseDeviceEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QAbstractCameraController12accelerationEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QAbstractCameraController12decelerationEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QAbstractCameraController14keyboardDeviceEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QAbstractCameraController6cameraEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QAbstractCameraController9lookSpeedEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QNormalDiffuseMapMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QNormalDiffuseMapMaterial12textureScaleEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QNormalDiffuseMapMaterial6normalEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QNormalDiffuseMapMaterial7ambientEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QNormalDiffuseMapMaterial7diffuseEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QNormalDiffuseMapMaterial8specularEv@Qt_6 6.6.1
_ZNK10Qt3DExtras25QNormalDiffuseMapMaterial9shininessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras27QDiffuseSpecularMapMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras27QDiffuseSpecularMapMaterial12textureScaleEv@Qt_6 6.6.1
_ZNK10Qt3DExtras27QDiffuseSpecularMapMaterial7ambientEv@Qt_6 6.6.1
_ZNK10Qt3DExtras27QDiffuseSpecularMapMaterial7diffuseEv@Qt_6 6.6.1
_ZNK10Qt3DExtras27QDiffuseSpecularMapMaterial8specularEv@Qt_6 6.6.1
_ZNK10Qt3DExtras27QDiffuseSpecularMapMaterial9shininessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras28QFirstPersonCameraController10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras30QNormalDiffuseMapAlphaMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras33QNormalDiffuseSpecularMapMaterial10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras33QNormalDiffuseSpecularMapMaterial12textureScaleEv@Qt_6 6.6.1
_ZNK10Qt3DExtras33QNormalDiffuseSpecularMapMaterial6normalEv@Qt_6 6.6.1
_ZNK10Qt3DExtras33QNormalDiffuseSpecularMapMaterial7ambientEv@Qt_6 6.6.1
_ZNK10Qt3DExtras33QNormalDiffuseSpecularMapMaterial7diffuseEv@Qt_6 6.6.1
_ZNK10Qt3DExtras33QNormalDiffuseSpecularMapMaterial8specularEv@Qt_6 6.6.1
_ZNK10Qt3DExtras33QNormalDiffuseSpecularMapMaterial9shininessEv@Qt_6 6.6.1
_ZNK10Qt3DExtras9QConeMesh10metaObjectEv@Qt_6 6.6.1
_ZNK10Qt3DExtras9QConeMesh12bottomRadiusEv@Qt_6 6.6.1
_ZNK10Qt3DExtras9QConeMesh12hasTopEndcapEv@Qt_6 6.6.1
_ZNK10Qt3DExtras9QConeMesh15hasBottomEndcapEv@Qt_6 6.6.1
_ZNK10Qt3DExtras9QConeMesh5ringsEv@Qt_6 6.6.1
_ZNK10Qt3DExtras9QConeMesh6lengthEv@Qt_6 6.6.1
_ZNK10Qt3DExtras9QConeMesh6slicesEv@Qt_6 6.6.1
_ZNK10Qt3DExtras9QConeMesh9topRadiusEv@Qt_6 6.6.1
_ZTIN10Qt3DExtras10QPlaneMeshE@Qt_6 6.6.1
_ZTIN10Qt3DExtras10QTorusMeshE@Qt_6 6.6.1
_ZTIN10Qt3DExtras10Qt3DWindowE@Qt_6 6.6.1
_ZTIN10Qt3DExtras11QCuboidMeshE@Qt_6 6.6.1
_ZTIN10Qt3DExtras11QSphereMeshE@Qt_6 6.6.1
_ZTIN10Qt3DExtras11QSpriteGridE@Qt_6 6.6.1
_ZTIN10Qt3DExtras12QSpriteSheetE@Qt_6 6.6.1
_ZTIN10Qt3DExtras13QConeGeometryE@Qt_6 6.6.1
_ZTIN10Qt3DExtras13QCylinderMeshE@Qt_6 6.6.1
_ZTIN10Qt3DExtras13QSkyboxEntityE@Qt_6 6.6.1
_ZTIN10Qt3DExtras13QText2DEntityE@Qt_6 6.6.1
_ZTIN10Qt3DExtras14QGoochMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras14QPhongMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras14QPlaneGeometryE@Qt_6 6.6.1
_ZTIN10Qt3DExtras14QTorusGeometryE@Qt_6 6.6.1
_ZTIN10Qt3DExtras15QCuboidGeometryE@Qt_6 6.6.1
_ZTIN10Qt3DExtras15QSphereGeometryE@Qt_6 6.6.1
_ZTIN10Qt3DExtras16QForwardRendererE@Qt_6 6.6.1
_ZTIN10Qt3DExtras16QSpriteSheetItemE@Qt_6 6.6.1
_ZTIN10Qt3DExtras16QTextureMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras17QConeGeometryViewE@Qt_6 6.6.1
_ZTIN10Qt3DExtras17QCylinderGeometryE@Qt_6 6.6.1
_ZTIN10Qt3DExtras17QExtrudedTextMeshE@Qt_6 6.6.1
_ZTIN10Qt3DExtras18QPlaneGeometryViewE@Qt_6 6.6.1
_ZTIN10Qt3DExtras18QTorusGeometryViewE@Qt_6 6.6.1
_ZTIN10Qt3DExtras19QCuboidGeometryViewE@Qt_6 6.6.1
_ZTIN10Qt3DExtras19QDiffuseMapMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras19QMetalRoughMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras19QMorphPhongMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras19QPhongAlphaMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras19QSphereGeometryViewE@Qt_6 6.6.1
_ZTIN10Qt3DExtras20QAbstractSpriteSheetE@Qt_6 6.6.1
_ZTIN10Qt3DExtras21QCylinderGeometryViewE@Qt_6 6.6.1
_ZTIN10Qt3DExtras21QExtrudedTextGeometryE@Qt_6 6.6.1
_ZTIN10Qt3DExtras22QOrbitCameraControllerE@Qt_6 6.6.1
_ZTIN10Qt3DExtras23QPerVertexColorMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras24QDiffuseSpecularMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras25QAbstractCameraControllerE@Qt_6 6.6.1
_ZTIN10Qt3DExtras25QNormalDiffuseMapMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras27QDiffuseSpecularMapMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras28QFirstPersonCameraControllerE@Qt_6 6.6.1
_ZTIN10Qt3DExtras30QNormalDiffuseMapAlphaMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras33QNormalDiffuseSpecularMapMaterialE@Qt_6 6.6.1
_ZTIN10Qt3DExtras9QConeMeshE@Qt_6 6.6.1
_ZTIN10Qt3DRender22QFrameGraphNodePrivateE@Qt_6 6.6.1
_ZTIN10Qt3DRender23QAbstractTexturePrivateE@Qt_6 6.6.1
_ZTIN10Qt3DRender23QTechniqueFilterPrivateE@Qt_6 6.6.1
_ZTIZN9QMetaType17registerConverterI5QListIPN10Qt3DExtras16QSpriteSheetItemEE9QIterableI13QMetaSequenceEN9QtPrivate33QSequentialIterableConvertFunctorIS5_EEEEbT1_EUlPKvPvE_@Qt_6 6.6.1
_ZTIZN9QMetaType19registerMutableViewI5QListIPN10Qt3DExtras16QSpriteSheetItemEE9QIterableI13QMetaSequenceEN9QtPrivate37QSequentialIterableMutableViewFunctorIS5_EEEEbT1_EUlPvSD_E_@Qt_6 6.6.1
_ZTSN10Qt3DExtras10QPlaneMeshE@Qt_6 6.6.1
_ZTSN10Qt3DExtras10QTorusMeshE@Qt_6 6.6.1
_ZTSN10Qt3DExtras10Qt3DWindowE@Qt_6 6.6.1
_ZTSN10Qt3DExtras11QCuboidMeshE@Qt_6 6.6.1
_ZTSN10Qt3DExtras11QSphereMeshE@Qt_6 6.6.1
_ZTSN10Qt3DExtras11QSpriteGridE@Qt_6 6.6.1
_ZTSN10Qt3DExtras12QSpriteSheetE@Qt_6 6.6.1
_ZTSN10Qt3DExtras13QConeGeometryE@Qt_6 6.6.1
_ZTSN10Qt3DExtras13QCylinderMeshE@Qt_6 6.6.1
_ZTSN10Qt3DExtras13QSkyboxEntityE@Qt_6 6.6.1
_ZTSN10Qt3DExtras13QText2DEntityE@Qt_6 6.6.1
_ZTSN10Qt3DExtras14QGoochMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras14QPhongMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras14QPlaneGeometryE@Qt_6 6.6.1
_ZTSN10Qt3DExtras14QTorusGeometryE@Qt_6 6.6.1
_ZTSN10Qt3DExtras15QCuboidGeometryE@Qt_6 6.6.1
_ZTSN10Qt3DExtras15QSphereGeometryE@Qt_6 6.6.1
_ZTSN10Qt3DExtras16QForwardRendererE@Qt_6 6.6.1
_ZTSN10Qt3DExtras16QSpriteSheetItemE@Qt_6 6.6.1
_ZTSN10Qt3DExtras16QTextureMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras17QConeGeometryViewE@Qt_6 6.6.1
_ZTSN10Qt3DExtras17QCylinderGeometryE@Qt_6 6.6.1
_ZTSN10Qt3DExtras17QExtrudedTextMeshE@Qt_6 6.6.1
_ZTSN10Qt3DExtras18QPlaneGeometryViewE@Qt_6 6.6.1
_ZTSN10Qt3DExtras18QTorusGeometryViewE@Qt_6 6.6.1
_ZTSN10Qt3DExtras19QCuboidGeometryViewE@Qt_6 6.6.1
_ZTSN10Qt3DExtras19QDiffuseMapMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras19QMetalRoughMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras19QMorphPhongMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras19QPhongAlphaMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras19QSphereGeometryViewE@Qt_6 6.6.1
_ZTSN10Qt3DExtras20QAbstractSpriteSheetE@Qt_6 6.6.1
_ZTSN10Qt3DExtras21QCylinderGeometryViewE@Qt_6 6.6.1
_ZTSN10Qt3DExtras21QExtrudedTextGeometryE@Qt_6 6.6.1
_ZTSN10Qt3DExtras22QOrbitCameraControllerE@Qt_6 6.6.1
_ZTSN10Qt3DExtras23QPerVertexColorMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras24QDiffuseSpecularMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras25QAbstractCameraControllerE@Qt_6 6.6.1
_ZTSN10Qt3DExtras25QNormalDiffuseMapMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras27QDiffuseSpecularMapMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras28QFirstPersonCameraControllerE@Qt_6 6.6.1
_ZTSN10Qt3DExtras30QNormalDiffuseMapAlphaMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras33QNormalDiffuseSpecularMapMaterialE@Qt_6 6.6.1
_ZTSN10Qt3DExtras9QConeMeshE@Qt_6 6.6.1
_ZTSN10Qt3DRender22QFrameGraphNodePrivateE@Qt_6 6.6.1
_ZTSN10Qt3DRender23QAbstractTexturePrivateE@Qt_6 6.6.1
_ZTSN10Qt3DRender23QTechniqueFilterPrivateE@Qt_6 6.6.1
_ZTSZN9QMetaType17registerConverterI5QListIPN10Qt3DExtras16QSpriteSheetItemEE9QIterableI13QMetaSequenceEN9QtPrivate33QSequentialIterableConvertFunctorIS5_EEEEbT1_EUlPKvPvE_@Qt_6 6.6.1
_ZTSZN9QMetaType19registerMutableViewI5QListIPN10Qt3DExtras16QSpriteSheetItemEE9QIterableI13QMetaSequenceEN9QtPrivate37QSequentialIterableMutableViewFunctorIS5_EEEEbT1_EUlPvSD_E_@Qt_6 6.6.1
_ZTVN10Qt3DExtras10QPlaneMeshE@Qt_6 6.6.1
_ZTVN10Qt3DExtras10QTorusMeshE@Qt_6 6.6.1
_ZTVN10Qt3DExtras10Qt3DWindowE@Qt_6 6.6.1
_ZTVN10Qt3DExtras11QCuboidMeshE@Qt_6 6.6.1
_ZTVN10Qt3DExtras11QSphereMeshE@Qt_6 6.6.1
_ZTVN10Qt3DExtras11QSpriteGridE@Qt_6 6.6.1
_ZTVN10Qt3DExtras12QSpriteSheetE@Qt_6 6.6.1
_ZTVN10Qt3DExtras13QConeGeometryE@Qt_6 6.6.1
_ZTVN10Qt3DExtras13QCylinderMeshE@Qt_6 6.6.1
_ZTVN10Qt3DExtras13QSkyboxEntityE@Qt_6 6.6.1
_ZTVN10Qt3DExtras13QText2DEntityE@Qt_6 6.6.1
_ZTVN10Qt3DExtras14QGoochMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras14QPhongMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras14QPlaneGeometryE@Qt_6 6.6.1
_ZTVN10Qt3DExtras14QTorusGeometryE@Qt_6 6.6.1
_ZTVN10Qt3DExtras15QCuboidGeometryE@Qt_6 6.6.1
_ZTVN10Qt3DExtras15QSphereGeometryE@Qt_6 6.6.1
_ZTVN10Qt3DExtras16QForwardRendererE@Qt_6 6.6.1
_ZTVN10Qt3DExtras16QSpriteSheetItemE@Qt_6 6.6.1
_ZTVN10Qt3DExtras16QTextureMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras17QConeGeometryViewE@Qt_6 6.6.1
_ZTVN10Qt3DExtras17QCylinderGeometryE@Qt_6 6.6.1
_ZTVN10Qt3DExtras17QExtrudedTextMeshE@Qt_6 6.6.1
_ZTVN10Qt3DExtras18QPlaneGeometryViewE@Qt_6 6.6.1
_ZTVN10Qt3DExtras18QTorusGeometryViewE@Qt_6 6.6.1
_ZTVN10Qt3DExtras19QCuboidGeometryViewE@Qt_6 6.6.1
_ZTVN10Qt3DExtras19QDiffuseMapMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras19QMetalRoughMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras19QMorphPhongMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras19QPhongAlphaMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras19QSphereGeometryViewE@Qt_6 6.6.1
_ZTVN10Qt3DExtras20QAbstractSpriteSheetE@Qt_6 6.6.1
_ZTVN10Qt3DExtras21QCylinderGeometryViewE@Qt_6 6.6.1
_ZTVN10Qt3DExtras21QExtrudedTextGeometryE@Qt_6 6.6.1
_ZTVN10Qt3DExtras22QOrbitCameraControllerE@Qt_6 6.6.1
_ZTVN10Qt3DExtras23QPerVertexColorMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras24QDiffuseSpecularMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras25QAbstractCameraControllerE@Qt_6 6.6.1
_ZTVN10Qt3DExtras25QNormalDiffuseMapMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras27QDiffuseSpecularMapMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras28QFirstPersonCameraControllerE@Qt_6 6.6.1
_ZTVN10Qt3DExtras30QNormalDiffuseMapAlphaMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras33QNormalDiffuseSpecularMapMaterialE@Qt_6 6.6.1
_ZTVN10Qt3DExtras9QConeMeshE@Qt_6 6.6.1
(optional=templinst)_ZZN9QMetaType21registerConverterImplI5QListIPN10Qt3DExtras16QSpriteSheetItemEE9QIterableI13QMetaSequenceEEEbSt8functionIFbPKvPvEES_S_E10unregister@Qt_6 6.6.1
(optional=templinst)_ZZN9QMetaType23registerMutableViewImplI5QListIPN10Qt3DExtras16QSpriteSheetItemEE9QIterableI13QMetaSequenceEEEbSt8functionIFbPvSA_EES_S_E10unregister@Qt_6 6.6.1
(c++)"non-virtual thunk to Qt3DExtras::Qt3DWindow::~Qt3DWindow()@Qt_6" 6.6.1
|