1## Mesa 3-D Graphics Library v21.0.3
2
3### Mesa License
4
5```
6Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
7
8Permission is hereby granted, free of charge, to any person obtaining a
9copy of this software and associated documentation files (the "Software"),
10to deal in the Software without restriction, including without limitation
11the rights to use, copy, modify, merge, publish, distribute, sublicense,
12and/or sell copies of the Software, and to permit persons to whom the
13Software is furnished to do so, subject to the following conditions:
14
15The above copyright notice and this permission notice shall be included
16in all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
21THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24SOFTWARE.
25
26Attention, Contributors
27
28When contributing to the Mesa project you must agree to the licensing terms
29of the component to which you're contributing.
30The following section lists the primary components of the Mesa distribution
31and their respective licenses.
32Mesa Component Licenses
33
34
35
36Component         Location               License
37------------------------------------------------------------------
38Main Mesa code    src/mesa/              MIT
39Device drivers    src/mesa/drivers/*     MIT, generally
40
41Gallium code      src/gallium/           MIT
42
43Ext headers       GL/glext.h             Khronos
44                  GL/glxext.h            Khronos
45                  GL/wglext.h            Khronos
46                  KHR/khrplatform.h      Khronos
47
48*****************************************************************************
49
50----
51include/GL/gl.h :
52
53
54 Mesa 3-D graphics library
55
56 Copyright (C) 1999-2006  Brian Paul   All Rights Reserved.
57 Copyright (C) 2009  VMware, Inc.  All Rights Reserved.
58
59 Permission is hereby granted, free of charge, to any person obtaining a
60 copy of this software and associated documentation files (the "Software"),
61 to deal in the Software without restriction, including without limitation
62 the rights to use, copy, modify, merge, publish, distribute, sublicense,
63 and/or sell copies of the Software, and to permit persons to whom the
64 Software is furnished to do so, subject to the following conditions:
65
66 The above copyright notice and this permission notice shall be included
67 in all copies or substantial portions of the Software.
68
69 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
70 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
71 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
72 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
73 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
74 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
75 OTHER DEALINGS IN THE SOFTWARE.
76
77 *****************************************************************************
78
79----
80include/GL/glext.h
81include/GL/glxext.h
82include/GL/wglxext.h :
83
84
85 Copyright (c) 2013 - 2018 The Khronos Group Inc.
86
87 Permission is hereby granted, free of charge, to any person obtaining a
88 copy of this software and/or associated documentation files (the
89 "Materials"), to deal in the Materials without restriction, including
90 without limitation the rights to use, copy, modify, merge, publish,
91 distribute, sublicense, and/or sell copies of the Materials, and to
92 permit persons to whom the Materials are furnished to do so, subject to
93 the following conditions:
94
95 The above copyright notice and this permission notice shall be included
96 in all copies or substantial portions of the Materials.
97
98 THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
99 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
100 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
101 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
102 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
103 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
104 MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
105
106 *****************************************************************************
107
108----
109include/KHR/khrplatform.h :
110
111 Copyright (c) 2008 - 2018 The Khronos Group Inc.
112
113 Permission is hereby granted, free of charge, to any person obtaining a
114 copy of this software and/or associated documentation files (the
115 "Materials"), to deal in the Materials without restriction, including
116 without limitation the rights to use, copy, modify, merge, publish,
117 distribute, sublicense, and/or sell copies of the Materials, and to
118 permit persons to whom the Materials are furnished to do so, subject to
119 the following conditions:
120
121 The above copyright notice and this permission notice shall be included
122 in all copies or substantial portions of the Materials.
123
124 THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
125 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
126 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
127 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
128 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
129 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
130 MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
131
132 *****************************************************************************
133
134```
135