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
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Source: https://jogamp.org
Files-Excluded: .gitignore
.htaccess
make/lib
make/stub_includes/embedded/IntelGDL/gdl.h
src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/shader/landscape.fp
www
Files: *
Copyright: 2009-2023 JogAmp Community.
License: BSD-2-Clause-Views
Files: make/*
Copyright: 2007-2015 The Khronos Group Inc.
License: Expat
Files: make/stub_includes/cg/*
Copyright: 2002-2004 NVIDIA Corporation.
License: NVIDIA-MIT-License
Files: make/stub_includes/drm/*
Copyright: 2000 VA Linux Systems, Inc., Sunnyvale, California.
1999-2000 Precision Insight, Inc., Cedar Park, Texas.
License: Expat
Files: make/stub_includes/drm/drm-gbm-lib.c
Copyright: 2010-2020 JogAmp Community.
License: BSD-2-Clause-Views
Files: make/stub_includes/drm/drm_mode.h
Copyright: 2008 Red Hat Inc.
2007 Jakob Bornecrantz <wallbraker@gmail.com>
2007 Dave Airlie <airlied@linux.ie>
2007-2008, Tungsten Graphics, Inc., Cedar Park, TX., USA
2007-2008, Intel Corporation
License: Expat
Files: make/stub_includes/drm/gbm.h
Copyright: 2011 Intel Corporation
License: Expat
Files: make/stub_includes/drm/xf86drmMode.h
Copyright: 2007-2008 Tungsten Graphics, Inc., Cedar Park, Texas.
2007-2008 Jakob Bornecrantz <wallbraker@gmail.com>
2007-2008 Dave Airlie <airlied@linux.ie>
License: Expat
Files: make/stub_includes/embedded/*
Copyright: 2005-2009 Intel Corporation.
License: BSD-3-Clause or GPL-2
Files: make/stub_includes/ffmpeg/v0400/libavcodec/ac3_parser.h
Copyright: 2003 Michael Niedermayer <michaelni@gmx.at>
2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavcodec/avcodec.h
Copyright: 2000-2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavcodec/d3d11va.h
Copyright: 2015 Steve Lhomme
2009 Laurent Aimar
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavcodec/dirac.h
Copyright: 2011 Jordi Ortiz
2009 David Conrad
2007 Marco Gerards <marco@gnu.org>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavcodec/dxva2.h
Copyright: 2009 Laurent Aimar
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavcodec/jni.h
make/stub_includes/ffmpeg/v0400/libavcodec/mediacodec.h
Copyright: 2015-2016 Matthieu Bouron <matthieu.bouron stupeflix.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavcodec/vaapi.h
Copyright: 2008-2009 Splitted-Desktop Systems
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavcodec/vdpau.h
Copyright: 2008 NVIDIA
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavcodec/videotoolbox.h
Copyright: 2012 Sebastien Zwickert
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavcodec/xvmc.h
Copyright: 2003 Ivan Kalvachev
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavfilter/avfilter.h
Copyright: 2007 Bobby Bingham
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavformat/*
Copyright: 2000-2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/adler32.h
make/stub_includes/ffmpeg/v0400/libavutil/avstring.h
make/stub_includes/ffmpeg/v0400/libavutil/intfloat.h
Copyright: 2006-2011 Mans Rullgard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/aes.h
make/stub_includes/ffmpeg/v0400/libavutil/attributes.h
make/stub_includes/ffmpeg/v0400/libavutil/avassert.h
make/stub_includes/ffmpeg/v0400/libavutil/avutil.h
make/stub_includes/ffmpeg/v0400/libavutil/bswap.h
make/stub_includes/ffmpeg/v0400/libavutil/common.h
make/stub_includes/ffmpeg/v0400/libavutil/crc.h
make/stub_includes/ffmpeg/v0400/libavutil/eval.h
make/stub_includes/ffmpeg/v0400/libavutil/lfg.h
make/stub_includes/ffmpeg/v0400/libavutil/log.h
make/stub_includes/ffmpeg/v0400/libavutil/mathematics.h
make/stub_includes/ffmpeg/v0400/libavutil/md5.h
make/stub_includes/ffmpeg/v0400/libavutil/mem.h
make/stub_includes/ffmpeg/v0400/libavutil/opt.h
make/stub_includes/ffmpeg/v0400/libavutil/pixdesc.h
make/stub_includes/ffmpeg/v0400/libavutil/pixfmt.h
make/stub_includes/ffmpeg/v0400/libavutil/rational.h
make/stub_includes/ffmpeg/v0400/libavutil/sha.h
make/stub_includes/ffmpeg/v0400/libavutil/tree.h
Copyright: 2001-2012 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/aes_ctr.h
Copyright: 2015 Eran Kornblau <erankor at gmail dot com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/audio_fifo.h
Copyright: 2012 Justin Ruggles <justin.ruggles@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/base64.h
Copyright: 2006 Ryan Martell. (rdm4@martellventures.com)
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/blowfish.h
make/stub_includes/ffmpeg/v0400/libavutil/xtea.h
Copyright: 2012 Samuel Pitoiset
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/bprint.h
Copyright: 2012 Nicolas George
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/camellia.h
make/stub_includes/ffmpeg/v0400/libavutil/cast5.h
make/stub_includes/ffmpeg/v0400/libavutil/twofish.h
Copyright: 2014-2015 Supraja Meedinti
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/channel_layout.h
Copyright: 2008 Peter Ross
2006 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/cpu.h
make/stub_includes/ffmpeg/v0400/libavutil/time.h
make/stub_includes/ffmpeg/v0400/libavutil/version.h
Copyright: 2000-2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/des.h
make/stub_includes/ffmpeg/v0400/libavutil/lzo.h
Copyright: 2006-2007 Reimar Doeffinger
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/display.h
make/stub_includes/ffmpeg/v0400/libavutil/spherical.h
make/stub_includes/ffmpeg/v0400/libavutil/stereo3d.h
Copyright: 2013-2016 Vittorio Giovara <vittorio.giovara@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/dovi_meta.h
Copyright: 2020 Vacing Fang <vacingfang@tencent.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/downmix_info.h
Copyright: 2014 Tim Walker <tdskywalker@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/hash.h
make/stub_includes/ffmpeg/v0400/libavutil/murmur3.h
Copyright: 2013 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/hdr_dynamic_metadata.h
Copyright: 2018 Mohammad Izadi <moh.izadi at gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/hmac.h
Copyright: 2012 Martin Storsjo
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/mastering_display_metadata.h
Copyright: 2016 Neil Birkbeck <neil.birkbeck@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/random_seed.h
Copyright: 2009 Baptiste Coudurier <baptiste.coudurier@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/ripemd.h
make/stub_includes/ffmpeg/v0400/libavutil/sha512.h
Copyright: 2013 James Almer <jamrial@gmail.com>
2007 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/tea.h
Copyright: 2015 Vesselin Bontchev
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libavutil/timecode.h
Copyright: 2011 2012 Smartjog S.A.S Clément BÅsch <clement.boesch@smartjog.com>
2006 Smartjog S.A.S Baptiste Coudurier <baptiste.coudurier@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libswresample/*
Copyright: 2011-2013 Michael Niedermayer (michaelni@gmx.at)
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0400/libswscale/swscale.h
Copyright: 2001-2012 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavcodec/ac3_parser.h
Copyright: 2003 Michael Niedermayer <michaelni@gmx.at>
2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavcodec/avcodec.h
Copyright: 2000-2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavcodec/d3d11va.h
Copyright: 2015 Steve Lhomme
2009 Laurent Aimar
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavcodec/dirac.h
Copyright: 2011 Jordi Ortiz
2009 David Conrad
2007 Marco Gerards <marco@gnu.org>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavcodec/dxva2.h
Copyright: 2009 Laurent Aimar
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavcodec/jni.h
make/stub_includes/ffmpeg/v0500/libavcodec/mediacodec.h
Copyright: 2015-2016 Matthieu Bouron <matthieu.bouron stupeflix.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavcodec/vdpau.h
Copyright: 2008 NVIDIA
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavcodec/videotoolbox.h
Copyright: 2012 Sebastien Zwickert
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavcodec/xvmc.h
Copyright: 2003 Ivan Kalvachev
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavfilter/avfilter.h
Copyright: 2007 Bobby Bingham
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavformat/*
Copyright: 2000-2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/adler32.h
make/stub_includes/ffmpeg/v0500/libavutil/avstring.h
make/stub_includes/ffmpeg/v0500/libavutil/intfloat.h
Copyright: 2006-2011 Mans Rullgard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/aes.h
make/stub_includes/ffmpeg/v0500/libavutil/attributes.h
make/stub_includes/ffmpeg/v0500/libavutil/avassert.h
make/stub_includes/ffmpeg/v0500/libavutil/avutil.h
make/stub_includes/ffmpeg/v0500/libavutil/bswap.h
make/stub_includes/ffmpeg/v0500/libavutil/common.h
make/stub_includes/ffmpeg/v0500/libavutil/crc.h
make/stub_includes/ffmpeg/v0500/libavutil/eval.h
make/stub_includes/ffmpeg/v0500/libavutil/lfg.h
make/stub_includes/ffmpeg/v0500/libavutil/log.h
make/stub_includes/ffmpeg/v0500/libavutil/mathematics.h
make/stub_includes/ffmpeg/v0500/libavutil/md5.h
make/stub_includes/ffmpeg/v0500/libavutil/mem.h
make/stub_includes/ffmpeg/v0500/libavutil/opt.h
make/stub_includes/ffmpeg/v0500/libavutil/pixdesc.h
make/stub_includes/ffmpeg/v0500/libavutil/pixfmt.h
make/stub_includes/ffmpeg/v0500/libavutil/rational.h
make/stub_includes/ffmpeg/v0500/libavutil/sha.h
make/stub_includes/ffmpeg/v0500/libavutil/tree.h
Copyright: 2001-2012 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/aes_ctr.h
Copyright: 2015 Eran Kornblau <erankor at gmail dot com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/audio_fifo.h
Copyright: 2012 Justin Ruggles <justin.ruggles@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/base64.h
Copyright: 2006 Ryan Martell. (rdm4@martellventures.com)
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/blowfish.h
make/stub_includes/ffmpeg/v0500/libavutil/xtea.h
Copyright: 2012 Samuel Pitoiset
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/bprint.h
Copyright: 2012 Nicolas George
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/camellia.h
make/stub_includes/ffmpeg/v0500/libavutil/cast5.h
make/stub_includes/ffmpeg/v0500/libavutil/twofish.h
Copyright: 2014-2015 Supraja Meedinti
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/channel_layout.h
Copyright: 2008 Peter Ross
2006 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/cpu.h
make/stub_includes/ffmpeg/v0500/libavutil/time.h
make/stub_includes/ffmpeg/v0500/libavutil/version.h
Copyright: 2000-2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/csp.h
Copyright: 2016 Ronald S. Bultje <rsbultje@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/des.h
make/stub_includes/ffmpeg/v0500/libavutil/lzo.h
Copyright: 2006-2007 Reimar Doeffinger
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/display.h
make/stub_includes/ffmpeg/v0500/libavutil/spherical.h
make/stub_includes/ffmpeg/v0500/libavutil/stereo3d.h
Copyright: 2013-2016 Vittorio Giovara <vittorio.giovara@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/dovi_meta.h
Copyright: 2020 Vacing Fang <vacingfang@tencent.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/downmix_info.h
Copyright: 2014 Tim Walker <tdskywalker@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/hash.h
make/stub_includes/ffmpeg/v0500/libavutil/murmur3.h
Copyright: 2013 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/hdr_dynamic_metadata.h
Copyright: 2018 Mohammad Izadi <moh.izadi at gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/hdr_dynamic_vivid_metadata.h
Copyright: 2021 Limin Wang <lance.lmwang at gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/hmac.h
Copyright: 2012 Martin Storsjo
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/mastering_display_metadata.h
Copyright: 2016 Neil Birkbeck <neil.birkbeck@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/random_seed.h
Copyright: 2009 Baptiste Coudurier <baptiste.coudurier@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/ripemd.h
make/stub_includes/ffmpeg/v0500/libavutil/sha512.h
Copyright: 2013 James Almer <jamrial@gmail.com>
2007 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/tea.h
Copyright: 2015 Vesselin Bontchev
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/timecode.h
Copyright: 2011-2012 Smartjog S.A.S Clément BÅsch <clement.boesch@smartjog.com>
2006 Smartjog S.A.S Baptiste Coudurier <baptiste.coudurier@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libavutil/uuid.h
Copyright: 2022 Pierre-Anthony Lemieux <pal@palemieux.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libswresample/swresample.h
Copyright: 2011-2013 Michael Niedermayer (michaelni@gmx.at)
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0500/libswscale/swscale.h
Copyright: 2001-2012 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavcodec/ac3_parser.h
Copyright: 2003 Michael Niedermayer <michaelni@gmx.at>
2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavcodec/avcodec.h
Copyright: 2000-2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavcodec/d3d11va.h
Copyright: 2015 Steve Lhomme
2009 Laurent Aimar
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavcodec/dirac.h
Copyright: 2011 Jordi Ortiz
2009 David Conrad
2007 Marco Gerards <marco@gnu.org>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavcodec/dxva2.h
Copyright: 2009 Laurent Aimar
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavcodec/jni.h
make/stub_includes/ffmpeg/v0600/libavcodec/mediacodec.h
Copyright: 2015-2016 Matthieu Bouron <matthieu.bouron stupeflix.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavcodec/vdpau.h
Copyright: 2008 NVIDIA
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavcodec/videotoolbox.h
Copyright: 2012 Sebastien Zwickert
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavcodec/xvmc.h
Copyright: 2003 Ivan Kalvachev
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavfilter/avfilter.h
Copyright: 2007 Bobby Bingham
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavformat/*
Copyright: 2000-2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/adler32.h
make/stub_includes/ffmpeg/v0600/libavutil/avstring.h
make/stub_includes/ffmpeg/v0600/libavutil/intfloat.h
Copyright: 2006-2011 Mans Rullgard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/aes.h
make/stub_includes/ffmpeg/v0600/libavutil/attributes.h
make/stub_includes/ffmpeg/v0600/libavutil/avassert.h
make/stub_includes/ffmpeg/v0600/libavutil/avutil.h
make/stub_includes/ffmpeg/v0600/libavutil/bswap.h
make/stub_includes/ffmpeg/v0600/libavutil/common.h
make/stub_includes/ffmpeg/v0600/libavutil/crc.h
make/stub_includes/ffmpeg/v0600/libavutil/eval.h
make/stub_includes/ffmpeg/v0600/libavutil/lfg.h
make/stub_includes/ffmpeg/v0600/libavutil/log.h
make/stub_includes/ffmpeg/v0600/libavutil/mathematics.h
make/stub_includes/ffmpeg/v0600/libavutil/md5.h
make/stub_includes/ffmpeg/v0600/libavutil/mem.h
make/stub_includes/ffmpeg/v0600/libavutil/opt.h
make/stub_includes/ffmpeg/v0600/libavutil/pixdesc.h
make/stub_includes/ffmpeg/v0600/libavutil/pixfmt.h
make/stub_includes/ffmpeg/v0600/libavutil/rational.h
make/stub_includes/ffmpeg/v0600/libavutil/sha.h
make/stub_includes/ffmpeg/v0600/libavutil/tree.h
Copyright: 2001-2012 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/aes_ctr.h
Copyright: 2015 Eran Kornblau <erankor at gmail dot com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/ambient_viewing_environment.h
Copyright: 2023 Jan Ekström <jeebjp@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/audio_fifo.h
Copyright: 2012 Justin Ruggles <justin.ruggles@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/base64.h
Copyright: 2006 Ryan Martell. (rdm4@martellventures.com)
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/blowfish.h
make/stub_includes/ffmpeg/v0600/libavutil/xtea.h
Copyright: 2012 Samuel Pitoiset
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/bprint.h
Copyright: 2012 Nicolas George
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/camellia.h
make/stub_includes/ffmpeg/v0600/libavutil/cast5.h
make/stub_includes/ffmpeg/v0600/libavutil/twofish.h
Copyright: 2014-2015 Supraja Meedinti
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/channel_layout.h
Copyright: 2008 Peter Ross
2006 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/cpu.h
make/stub_includes/ffmpeg/v0600/libavutil/time.h
make/stub_includes/ffmpeg/v0600/libavutil/version.h
Copyright: 2000-2003 Fabrice Bellard
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/csp.h
Copyright: 2023 Leo Izen <leo.izen@gmail.com>
2016 Ronald S. Bultje <rsbultje@gmail.com>
2015 Kevin Wheatley <kevin.j.wheatley@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/des.h
make/stub_includes/ffmpeg/v0600/libavutil/lzo.h
Copyright: 2006-2007 Reimar Doeffinger
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/display.h
make/stub_includes/ffmpeg/v0600/libavutil/spherical.h
make/stub_includes/ffmpeg/v0600/libavutil/stereo3d.h
Copyright: 2013-2016 Vittorio Giovara <vittorio.giovara@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/dovi_meta.h
Copyright: 2020 Vacing Fang <vacingfang@tencent.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/downmix_info.h
Copyright: 2014 Tim Walker <tdskywalker@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/hash.h
make/stub_includes/ffmpeg/v0600/libavutil/murmur3.h
Copyright: 2013 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/hdr_dynamic_metadata.h
Copyright: 2018 Mohammad Izadi <moh.izadi at gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/hdr_dynamic_vivid_metadata.h
Copyright: 2021 Limin Wang <lance.lmwang at gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/hmac.h
Copyright: 2012 Martin Storsjo
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/mastering_display_metadata.h
Copyright: 2016 Neil Birkbeck <neil.birkbeck@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/random_seed.h
Copyright: 2009 Baptiste Coudurier <baptiste.coudurier@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/ripemd.h
make/stub_includes/ffmpeg/v0600/libavutil/sha512.h
Copyright: 2013 James Almer <jamrial@gmail.com>
2007 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/tea.h
Copyright: 2015 Vesselin Bontchev
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/timecode.h
Copyright: 2011-2012 Smartjog S.A.S Clément BÅsch <clement.boesch@smartjog.com>
2006 Smartjog S.A.S, Baptiste Coudurier <baptiste.coudurier@gmail.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libavutil/uuid.h
Copyright: 2022 Pierre-Anthony Lemieux <pal@palemieux.com>
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libswresample/swresample.h
Copyright: 2011-2013 Michael Niedermayer (michaelni@gmx.at)
License: LGPL-2.1+
Files: make/stub_includes/ffmpeg/v0600/libswscale/swscale.h
Copyright: 2001-2012 Michael Niedermayer <michaelni@gmx.at>
License: LGPL-2.1+
Files: make/stub_includes/khr/KD/kdplatform.h
make/stub_includes/khr/KHR/*
Copyright: 2007-2015 The Khronos Group Inc.
License: Expat
Files: make/stub_includes/opengl/GL/gl.h
make/stub_includes/opengl/GL/glx.h
Copyright: 1999-2002 Brian Paul
License: Expat
Files: make/stub_includes/opengl/GL/glcorearbext.h
make/stub_includes/opengl/GL/glext-supplement.h
Copyright: 2010-2015 JogAmp Developer Team
License: Expat
Files: make/stub_includes/opengl/GL/glu.h
Copyright: 1991-2000, Silicon Graphics, Inc.
License: SGI-1.1
Files: make/stub_includes/opengl/GLES/*
make/stub_includes/opengl/GLES2/gl2platform.h
make/stub_includes/opengl/GLES3/*
Copyright: 2010-2015 JogAmp Developer Team
License: SGI-B-2.0
Files: make/stub_includes/opengl/GLES/glext-supplement.h
make/stub_includes/opengl/GLES2/gl2ext-supplement.h
Copyright: 2010-2015 JogAmp Developer Team
License: Expat
Files: make/stub_includes/opengl/GLES3/gl3x.h
Copyright: 2007-2015 The Khronos Group Inc.
License: Expat
Files: make/stub_includes/opengl/ios-window-system.h
Copyright: 2009-2023 JogAmp Community.
License: BSD-2-Clause-Views
Files: make/stub_includes/openmax/*
Copyright: 2007 The Khronos Group Inc.
License: Expat
Files: src/demos/com/jogamp/opengl/demos/GearsObject.java
src/demos/com/jogamp/opengl/demos/es2/GearsES2.java
src/demos/com/jogamp/opengl/demos/es2/GearsObjectES2.java
Copyright: 2011-2015 JogAmp Community.
License: Expat
Files: src/demos/com/jogamp/opengl/demos/ios/*
Copyright: 2019 Gothel Software e.K.
License: BSD-2-Clause-Views
Files: src/jogl/classes/com/jogamp/audio/*
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/jogl/classes/com/jogamp/gluegen/opengl/*
src/jogl/classes/com/jogamp/gluegen/runtime/opengl/GLNameResolver.java
src/jogl/classes/com/jogamp/opengl/DefaultGLCapabilitiesChooser.java
src/jogl/classes/com/jogamp/opengl/GLAutoDrawable.java
src/jogl/classes/com/jogamp/opengl/GLCapabilities.java
src/jogl/classes/com/jogamp/opengl/GLCapabilitiesChooser.java
src/jogl/classes/com/jogamp/opengl/GLContext.java
src/jogl/classes/com/jogamp/opengl/GLDrawable.java
src/jogl/classes/com/jogamp/opengl/GLDrawableFactory.java
src/jogl/classes/com/jogamp/opengl/GLException.java
src/jogl/classes/com/jogamp/opengl/GLProfile.java
src/jogl/classes/com/jogamp/opengl/Threading.java
src/jogl/classes/com/jogamp/opengl/awt/*
Copyright: 2010-2023 JogAmp Community.
2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/com/jogamp/gluegen/opengl/ant/*
Copyright: 2010 JogAmp Community.
2003-2005 Sun Microsystems, Inc.
2003 Rob Grzywinski (rgrzywinski@realityinteractive.com)
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/com/jogamp/opengl/GLBase.java
Copyright: 2010 JogAmp Community.
2009 Sun Microsystems, Inc.
License: BSD-2-Clause-Views
Files: src/jogl/classes/com/jogamp/opengl/GLEventListener.java
src/jogl/classes/com/jogamp/opengl/GLPipelineFactory.java
src/jogl/classes/com/jogamp/opengl/awt/AWTGLAutoDrawable.java
src/jogl/classes/com/jogamp/opengl/awt/ComponentEvents.java
src/jogl/classes/com/jogamp/opengl/cg/CgException.java
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/com/jogamp/opengl/fixedfunc/*
Copyright: 2010 JogAmp Community.
2009 Sun Microsystems, Inc.
License: BSD-2-Clause-Views
Files: src/jogl/classes/com/jogamp/opengl/fixedfunc/GLPointerFuncUtil.java
Copyright: 2009-2023 JogAmp Community.
License: BSD-2-Clause-Views
Files: src/jogl/classes/com/jogamp/opengl/glu/*
Copyright: 2003-2009 Sun Microsystems, Inc.
License: SGI-B-2.0
Files: src/jogl/classes/com/jogamp/opengl/math/FixedPoint.java
src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java
src/jogl/classes/com/jogamp/opengl/util/glsl/fixedfunc/*
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/jogl/classes/com/jogamp/opengl/util/AWTAnimatorImpl.java
src/jogl/classes/com/jogamp/opengl/util/DefaultAnimatorImpl.java
src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java
Copyright: 2010-2023 JogAmp Community.
2008-2009 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/jogl/classes/com/jogamp/opengl/util/Animator.java
src/jogl/classes/com/jogamp/opengl/util/FPSAnimator.java
src/jogl/classes/com/jogamp/opengl/util/awt/TextRenderer.java
src/jogl/classes/com/jogamp/opengl/util/awt/TextureRenderer.java
src/jogl/classes/com/jogamp/opengl/util/texture/*
Copyright: 2010-2023 JogAmp Community.
2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/com/jogamp/opengl/util/GLBuffers.java
src/jogl/classes/com/jogamp/opengl/util/Gamma.java
src/jogl/classes/com/jogamp/opengl/util/awt/ImageUtil.java
src/jogl/classes/com/jogamp/opengl/util/awt/Overlay.java
src/jogl/classes/com/jogamp/opengl/util/gl2/*
src/jogl/classes/com/jogamp/opengl/util/packrect/*
src/jogl/classes/com/jogamp/opengl/util/texture/awt/AWTTextureIO.java
src/jogl/classes/com/jogamp/opengl/util/texture/spi/*
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/com/jogamp/opengl/util/texture/ImageSequence.java
src/jogl/classes/com/jogamp/opengl/util/texture/ImageType.java
src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java
src/jogl/classes/com/jogamp/opengl/util/texture/TextureState.java
src/jogl/classes/com/jogamp/opengl/util/texture/spi/JPEGImage.java
Copyright: 2009-2023 JogAmp Community.
License: BSD-2-Clause-Views
Files: src/jogl/classes/com/jogamp/opengl/util/texture/spi/TextureProvider.java
src/jogl/classes/com/jogamp/opengl/util/texture/spi/awt/*
Copyright: 2010-2023 JogAmp Community.
2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/com/jogamp/opengl/util/texture/spi/awt/IIOTextureWriter.java
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/jogamp/graph/font/typecast/ot/*
Copyright: 2004-2007 David Schweinsberg
License: Apache-2.0
Files: src/jogl/classes/jogamp/graph/font/typecast/ot/Disassembler.java
src/jogl/classes/jogamp/graph/font/typecast/ot/Mnemonic.java
src/jogl/classes/jogamp/graph/font/typecast/ot/Point.java
src/jogl/classes/jogamp/graph/font/typecast/ot/OTFont.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/*
src/jogl/classes/jogamp/graph/font/typecast/ot/table/ClassDef.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/ClassDefFormat1.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/ClassDefFormat2.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/CvtTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/Device.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/DsigEntry.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/DsigTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/FpgmTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/GaspRange.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/GaspTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/HheaTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/KernSubtable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/KernSubtableFormat0.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/KernSubtableFormat2.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/KernTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/KerningPair.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/LocaTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/LtshTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/MaxpTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/Panose.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/PcltTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/PostTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/PrepTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/Program.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/SignatureBlock.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/TTCHeader.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/Table.java
Copyright: 1999-2003 The Apache Software Foundation.
License: Apache-1.1
Files: src/jogl/classes/jogamp/graph/font/typecast/ot/table/BaseTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/CffTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/CmapFormatUnknown.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/GposTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/HdmxTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/ID.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/TableException.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/VdmxTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/VheaTable.java
src/jogl/classes/jogamp/graph/font/typecast/ot/table/VmtxTable.java
src/jogl/classes/jogamp/graph/font/typecast/tt/*
Copyright: 2004-2007 David Schweinsberg
License: Apache-2.0
Files: src/jogl/classes/com/jogamp/graph/geom/*
Copyright: The Apache Software Foundation
License: Apache-2.0
Files: src/jogl/classes/jogamp/opengl/ExtensionAvailabilityCache.java
src/jogl/classes/jogamp/opengl/GLBufferStateTracker.java
src/jogl/classes/jogamp/opengl/GLContextImpl.java
src/jogl/classes/jogamp/opengl/GLContextShareSet.java
src/jogl/classes/jogamp/opengl/GLDrawableFactoryImpl.java
src/jogl/classes/jogamp/opengl/GLDrawableHelper.java
src/jogl/classes/jogamp/opengl/GLDrawableImpl.java
src/jogl/classes/jogamp/opengl/ToolkitThreadingPlugin.java
Copyright: 2010-2023 JogAmp Community.
2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/jogamp/opengl/GLStateTracker.java
src/jogl/classes/jogamp/opengl/GLWorkerThread.java
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/jogamp/opengl/ProjectFloat.java
Copyright: 2003 Sun Microsystems
1991-2000 Silicon Graphics, Inc.
2002-2004 LWJGL Project
License: SGI-B-2.0 and BSD-3-Clause-No-Nuclear-Warranty and BSD-3-Clause
Files: src/jogl/classes/jogamp/opengl/ThreadingImpl.java
src/jogl/classes/jogamp/opengl/egl/EGLContext.java
src/jogl/classes/jogamp/opengl/egl/EGLDrawable.java
src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java
src/jogl/classes/jogamp/opengl/egl/EGLGraphicsConfiguration.java
src/jogl/classes/jogamp/opengl/egl/EGLGraphicsConfigurationFactory.java
Copyright: 2010-2023 JogAmp Community.
2008-2009 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/jogl/classes/jogamp/opengl/awt/*
Copyright: 2010-2023 JogAmp Community.
2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/jogamp/opengl/awt/AWTTilePainter.java
Copyright: 2009-2023 JogAmp Community.
License: BSD-2-Clause-Views
Files: src/jogl/classes/jogamp/opengl/awt/Java2D.java
src/jogl/classes/jogamp/opengl/gl2/*
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/jogamp/opengl/egl/EGLExternalContext.java
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/jogl/classes/jogamp/opengl/glu/*
Copyright: 1991-2000, Silicon Graphics, Inc.
License: SGI-B-2.0
Files: src/jogl/classes/jogamp/opengl/gl2/ProjectDouble.java
src/jogl/classes/jogamp/opengl/glu/GLUquadricImpl.java
Copyright: 2003 Sun Microsystems
1991-2000 Silicon Graphics, Inc.
2002-2004 LWJGL Project
License: SGI-B-2.0 and BSD-3-Clause-No-Nuclear-Warranty and BSD-3-Clause
Files: src/jogl/classes/jogamp/opengl/glu/tessellator/*
Copyright: 2003-2009 Sun Microsystems, Inc.
License: SGI-B-2.0
Files: src/jogl/classes/jogamp/opengl/glu/tessellator/PriorityQSort.java
Copyright: 1991-2000 Silicon Graphics, Inc.
License: SGI-B-2.0
Files: src/jogl/classes/jogamp/opengl/macosx/*
Copyright: 2010-2023 JogAmp Community.
2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLDynamicLibraryBundleInfo.java
Copyright: 2009-2023 JogAmp Community.
License: BSD-2-Clause-Views
Files: src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLGraphicsConfiguration.java
src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLGraphicsConfigurationFactory.java
src/jogl/classes/jogamp/opengl/macosx/cgl/awt/*
Copyright: 2010-2012 JogAmp Community.
2008-2009 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/*
Copyright: 2010 JogAmp Community.
2009 Sun Microsystems, Inc.
License: BSD-2-Clause-Views
Files: src/jogl/classes/jogamp/opengl/util/jpeg/*
Copyright: 2011 notmasteryet
2010 JogAmp Community.
License: Apache-2.0 and BSD-2-Clause-Views
Files: src/jogl/classes/jogamp/opengl/windows/*
src/jogl/classes/jogamp/opengl/x11/*
src/nativewindow/classes/com/jogamp/nativewindow/AbstractGraphicsConfiguration.java
src/nativewindow/classes/com/jogamp/nativewindow/AbstractGraphicsDevice.java
src/nativewindow/classes/com/jogamp/nativewindow/Capabilities.java
src/nativewindow/classes/com/jogamp/nativewindow/DefaultCapabilitiesChooser.java
src/nativewindow/classes/com/jogamp/nativewindow/NativeWindow.java
Copyright: 2010-2023 JogAmp Community.
2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/jogamp/opengl/windows/wgl/WGLGLCapabilities.java
src/jogl/classes/jogamp/opengl/windows/wgl/WGLUtil.java
src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLDynamicLibraryBundleInfo.java
Copyright: 2009-2023 JogAmp Community.
License: BSD-2-Clause-Views
Files: src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLGraphicsConfiguration.java
src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLGraphicsConfigurationFactory.java
src/jogl/classes/jogamp/opengl/windows/wgl/awt/*
src/jogl/classes/jogamp/opengl/x11/glx/GLXUtil.java
src/jogl/classes/jogamp/opengl/x11/glx/X11GLXGraphicsConfiguration.java
src/jogl/classes/jogamp/opengl/x11/glx/X11GLXGraphicsConfigurationFactory.java
src/nativewindow/classes/com/jogamp/nativewindow/DefaultGraphicsDevice.java
src/nativewindow/classes/com/jogamp/nativewindow/GraphicsConfigurationFactory.java
src/nativewindow/classes/com/jogamp/nativewindow/NativeWindowFactory.java
src/nativewindow/classes/com/jogamp/nativewindow/SurfaceUpdatedListener.java
Copyright: 2010-2023 JogAmp Community.
2008-2009 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/jogl/classes/jogamp/opengl/x11/glx/X11ExternalGLXDrawable.java
src/jogl/native/GLXGetProcAddressARB.c
src/nativewindow/classes/com/jogamp/nativewindow/AbstractGraphicsScreen.java
src/nativewindow/classes/com/jogamp/nativewindow/CapabilitiesChooser.java
src/nativewindow/classes/com/jogamp/nativewindow/NativeWindowException.java
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/jogl/classes/jogamp/opengl/x11/glx/X11GLCapabilities.java
src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDynamicLibraryBundleInfo.java
Copyright: 2010-2020 JogAmp Community.
License: BSD-2-Clause-Views
Files: src/nativewindow/classes/com/jogamp/nativewindow/DefaultGraphicsConfiguration.java
src/nativewindow/classes/com/jogamp/nativewindow/DefaultGraphicsScreen.java
src/nativewindow/classes/com/jogamp/nativewindow/egl/*
src/nativewindow/classes/com/jogamp/nativewindow/macosx/*
src/nativewindow/classes/com/jogamp/nativewindow/windows/*
src/nativewindow/classes/jogamp/nativewindow/NativeWindowFactoryImpl.java
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/nativewindow/classes/com/jogamp/nativewindow/awt/*
src/nativewindow/classes/jogamp/nativewindow/jawt/*
src/newt/classes/com/jogamp/newt/util/MainThread.java
src/newt/classes/jogamp/newt/DefaultEDTUtil.java
Copyright: 2010-2015 JogAmp Community.
2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/nativewindow/classes/com/jogamp/nativewindow/awt/AWTPrintLifecycle.java
src/nativewindow/classes/com/jogamp/nativewindow/awt/AWTWindowClosingProtocol.java
src/nativewindow/classes/com/jogamp/nativewindow/awt/DirectDataBufferInt.java
Copyright: 2009-2023 JogAmp Community.
License: BSD-2-Clause-Views
Files: src/nativewindow/classes/com/jogamp/nativewindow/x11/*
src/nativewindow/classes/jogamp/nativewindow/DefaultGraphicsConfigurationFactoryImpl.java
src/nativewindow/classes/jogamp/nativewindow/x11/*
src/newt/classes/com/jogamp/newt/NewtFactory.java
src/newt/classes/com/jogamp/newt/event/InputEvent.java
src/newt/classes/com/jogamp/newt/event/KeyEvent.java
src/newt/classes/com/jogamp/newt/event/KeyListener.java
src/newt/classes/com/jogamp/newt/event/MouseEvent.java
src/newt/classes/com/jogamp/newt/event/MouseListener.java
src/newt/classes/com/jogamp/newt/event/NEWTEvent.java
src/newt/classes/com/jogamp/newt/event/NEWTEventListener.java
src/newt/classes/com/jogamp/newt/event/WindowEvent.java
src/newt/classes/com/jogamp/newt/event/WindowListener.java
src/newt/classes/com/jogamp/newt/opengl/GLWindow.java
src/newt/classes/jogamp/newt/DisplayImpl.java
src/newt/classes/jogamp/newt/OffscreenWindow.java
src/newt/classes/jogamp/newt/ScreenImpl.java
src/newt/classes/jogamp/newt/driver/awt/*
src/newt/classes/jogamp/newt/driver/bcm/egl/*
src/newt/classes/jogamp/newt/driver/intel/*
src/newt/classes/jogamp/newt/driver/kd/*
src/newt/classes/jogamp/newt/driver/macosx/*
src/newt/classes/jogamp/newt/driver/windows/*
src/newt/classes/jogamp/newt/driver/x11/DisplayDriver.java
src/newt/classes/jogamp/newt/driver/x11/ScreenDriver.java
src/newt/classes/jogamp/newt/driver/x11/WindowDriver.java
src/newt/native/KDWindow.c
src/newt/native/MacNewtNSWindow.h
src/newt/native/MacNewtNSWindow.m
src/newt/native/MacWindow.m
src/newt/native/WindowsWindow.c
src/newt/native/X11Window.c
Copyright: 2010-2023 JogAmp Community.
2008-2009 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/nativewindow/classes/jogamp/nativewindow/SurfaceScaleUtils.java
Copyright: 2014-2023 Gothel Software e.K.
2014 JogAmp Community.
License: BSD-2-Clause-Views
Files: src/nativewindow/classes/jogamp/nativewindow/jawt/JAWTJNILibLoader.java
src/nativewindow/classes/jogamp/nativewindow/jawt/JAWT_PlatformInfo.java
src/nativewindow/native/JAWT_DrawingSurfaceInfo.c
src/newt/classes/jogamp/newt/NEWTJNILibLoader.java
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/nativewindow/classes/jogamp/nativewindow/x11/X11Capabilities.java
src/newt/classes/jogamp/newt/driver/awt/AWTEDTUtil.java
src/newt/classes/jogamp/newt/driver/macosx/AppKitEDTUtil.java
src/newt/classes/jogamp/newt/driver/macosx/MacKeyUtil.java
Copyright: 2009-2023 JogAmp Community.
License: BSD-2-Clause-Views
Files: src/newt/classes/jogamp/newt/WindowImpl.java
Copyright: 2010-2023 JogAmp Community.
2010-2023 Gothel Software e.K.
2008 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/newt/classes/jogamp/newt/driver/awt/ScreenDriver.java
src/newt/native/InputEvent.h
src/newt/native/IntelGDL.c
src/newt/native/bcm_egl.c
Copyright: 2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause
Files: src/newt/native/xrandr_utils.c
Copyright: 2013 NVIDIA Corporation
2006 Intel Corporation
2002 Hewlett Packard Company, Inc.
2001 Keith Packard, member of The XFree86 Project, Inc.
License: Expat
Files: src/test-native/ffmpeg/*
Copyright: 2000-2002 Fabrice Bellard
License: LGPL-2.1+
Files: src/test-native/mesa-demos-patched/*
Copyright: 1999-2002 Brian Paul
License: Expat
Files: src/test-native/mesa-demos-patched/EGL/*
Copyright: 2007-2015 The Khronos Group Inc.
License: Expat
Files: src/test-native/mesa-demos-patched/eglut/*
Copyright: 2010 LunarG Inc.
License: Expat
Files: src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextWithJTabbedPaneAWT.java
Copyright: 2013 United States Government as representedthe Administrator of the National Aeronautics and Space Administration.
2010 JogAmp Community.
License: BSD-2-Clause-Views
Files: src/test/com/jogamp/opengl/test/junit/jogl/caps/MultisampleChooser01.java
src/test/com/jogamp/opengl/test/junit/jogl/caps/TestMultisampleES1AWT.java
src/test/com/jogamp/opengl/test/junit/jogl/caps/TestMultisampleES1NEWT.java
src/test/com/jogamp/opengl/test/junit/jogl/caps/TestMultisampleES2NEWT.java
src/test/com/jogamp/opengl/test/junit/jogl/demos/es1/MultisampleDemoES1.java
src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/MultisampleDemoES2.java
Copyright: 2010-2023 JogAmp Community.
2003-2009 Sun Microsystems, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Files: src/test/com/jogamp/opengl/test/junit/jogl/demos/GearsObject.java
src/test/com/jogamp/opengl/test/junit/jogl/demos/es1/GearsES1.java
src/test/com/jogamp/opengl/test/junit/jogl/demos/es1/GearsObjectES1.java
src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/GearsES2.java
src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/GearsObjectES2.java
src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/LineSquareXDemoES2.java
Copyright: 2011-2015 JogAmp Community.
License: Expat
Files: debian/*
Copyright: 2010-2014 Sylvestre Ledru <sylvestre@debian.org>
2013-2022 tony mancill <tmancill@debian.org>
2023 Pierre Gruet <pgt@debian.org>
License: Expat
License: BSD-2-Clause-Views
Redistribution and use in source and binary forms, with or without modification, are
permitted provided that the following conditions are met:
.
1. Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer.
.
2. Redistributions in binary form must reproduce the above copyright notice, this list
of conditions and the following disclaimer in the documentation and/or other materials
provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.
The views and conclusions contained in the software and documentation are those of the
authors and should not be interpreted as representing official policies, either expressed
or implied, of JogAmp Community.
License: Expat
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License: NVIDIA-MIT-License
NVIDIA Corporation("NVIDIA") supplies this software to you in
consideration of your agreement to the following terms, and your use,
installation, modification or redistribution of this NVIDIA software
constitutes acceptance of these terms. If you do not agree with these
terms, please do not use, install, modify or redistribute this NVIDIA
software.
.
In consideration of your agreement to abide by the following terms, and
subject to these terms, NVIDIA grants you a personal, non-exclusive
license, under NVIDIA's copyrights in this original NVIDIA software (the
"NVIDIA Software"), to use, reproduce, modify and redistribute the
NVIDIA Software, with or without modifications, in source and/or binary
forms; provided that if you redistribute the NVIDIA Software, you must
retain the copyright notice of NVIDIA, this notice and the following
text and disclaimers in all such redistributions of the NVIDIA Software.
Neither the name, trademarks, service marks nor logos of NVIDIA
Corporation may be used to endorse or promote products derived from the
NVIDIA Software without specific prior written permission from NVIDIA.
Except as expressly stated in this notice, no other rights or licenses
express or implied, are granted by NVIDIA herein, including but not
limited to any patent rights that may be infringed by your derivative
works or by other works in which the NVIDIA Software may be
incorporated. No hardware is licensed hereunder.
.
THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED,
INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE,
NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER
PRODUCTS.
.
IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT,
INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY
OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE
NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT,
TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF
NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-Clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
License: GPL-2
On Debian systems the full text of the GPL-2 can be found in
/usr/share/common-licenses/GPL-2
License: LGPL-2.1+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1, or (at your option)
any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
.
On Debian systems, the complete text of the GNU Lesser General Public
License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’.
License: SGI-1.1
License Applicability. Except to the extent portions of this file are
made subject to an alternative license as permitted in the SGI Free
Software License B, Version 1.1 (the "License"), the contents of this
file are subject only to the provisions of the License. You may not use
this file except in compliance with the License. You may obtain a copy
of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
.
http://oss.sgi.com/projects/FreeB
.
Note that, as provided in the License, the Software is distributed on an
"AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
.
Original Code. The Original Code is: OpenGL Sample Implementation,
Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
Copyright in any portions created by third parties is as indicated
elsewhere herein. All Rights Reserved.
Comment:
The SGI FreeB license version 1.1 allows the Recipient to choose to use
Covered Code under the terms of a subsequent version of the license. Debian
makes use of that possibility, using the 2.0 version as above.
License: SGI-B-2.0
SGI FREE SOFTWARE LICENSE B
(Version 2.0, Sept. 18, 2008)
.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
.
The above copyright notice including the dates of first publication and
either this permission notice or a reference to
http://oss.sgi.com/projects/FreeB/
shall be included in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
.
Except as contained in this notice, the name of Silicon Graphics, Inc.
shall not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization from
Silicon Graphics, Inc.
License: BSD-3-Clause-No-Nuclear-Warranty
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
.
- Redistribution of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
- Redistribution in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
.
Neither the name of Sun Microsystems, Inc. or the names of
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
.
This software is provided "AS IS," without a warranty of any kind. ALL
EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN
MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR
ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR
ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR
DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF
SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
.
You acknowledge that this software is not designed or intended for use
in the design, construction, operation or maintenance of any nuclear
facility.
License: Apache-2.0
On Debian systems, the complete text of the Apache 2.0 License
can be found in the `/usr/share/common-licenses/Apache-2.0' file.
License: Apache-1.1
The Apache Software License, Version 1.1
.
Copyright (c) 2000 The Apache Software Foundation. All rights
reserved.
.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
.
3. The end-user documentation included with the redistribution,
if any, must include the following acknowledgment:
"This product includes software developed by the
Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself,
if and wherever such third-party acknowledgments normally appear.
.
4. The names "Apache" and "Apache Software Foundation" must
not be used to endorse or promote products derived from this
software without prior written permission. For written
permission, please contact apache@apache.org.
.
5. Products derived from this software may not be called "Apache",
nor may "Apache" appear in their name, without prior written
permission of the Apache Software Foundation.
.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
|