1virglrenderer is under MIT license and derived from mesa in many parts. 2 3Copyright (C) 2004 Roland Scheidegger 4Copyright 2006-2014 VMware, Inc. 5Copyright 2008 Dennis Smit 6Copyright 2009 Marek Olšák <maraeo@gmail.com> 7Copyright 2009 Younes Manton. 8Copyright 2010 Luca Barbieri 9Copyright 2011 LunarG, Inc. 10Copyright 2011-2016 Red Hat Inc. 11All Rights Reserved. 12 13Permission is hereby granted, free of charge, to any person obtaining a 14copy of this software and associated documentation files (the "Software"), 15to deal in the Software without restriction, including without limitation 16the rights to use, copy, modify, merge, publish, distribute, sublicense, 17and/or sell copies of the Software, and to permit persons to whom the 18Software is furnished to do so, subject to the following conditions: 19 20The above copyright notice and this permission notice shall be included 21in all copies or substantial portions of the Software. 22 23THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 24OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 25FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 26THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 27OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 28ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 29OTHER DEALINGS IN THE SOFTWARE. 30 31--------------------------------------------------------------------------- 32src/gallium/auxiliary/util/u_atomic.h 33 34No copyright claimed on this file. 35 36--------------------------------------------------------------------------- 37src/gallium/include/c11/threads.h 38 39(C) Copyright yohhoy 2012. 40Distributed under the Boost Software License, Version 1.0. 41 42Permission is hereby granted, free of charge, to any person or organization 43obtaining a copy of the software and accompanying documentation covered by 44this license (the "Software") to use, reproduce, display, distribute, 45execute, and transmit the Software, and to prepare [[derivative work]]s of the 46Software, and to permit third-parties to whom the Software is furnished to 47do so, all subject to the following: 48 49The copyright notices in the Software and this entire statement, including 50the above license grant, this restriction and the following disclaimer, 51must be included in all copies of the Software, in whole or in part, and 52all derivative works of the Software, unless such copies or derivative 53works are solely in the form of machine-executable object code generated by 54a source language processor. 55 56THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 57IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 58FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 59SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 60FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 61ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 62DEALINGS IN THE SOFTWARE. 63 64--------------------------------------------------------------------------- 65src/iov.c 66 67Copyright (C) 2002 Michael Ringgaard. All rights reserved. 68 69Redistribution and use in source and binary forms, with or without 70modification, are permitted provided that the following conditions 71are met: 72 731. Redistributions of source code must retain the above copyright 74 notice, this list of conditions and the following disclaimer. 752. Redistributions in binary form must reproduce the above copyright 76 notice, this list of conditions and the following disclaimer in the 77 documentation and/or other materials provided with the distribution. 783. Neither the name of the project nor the names of its contributors 79 may be used to endorse or promote products derived from this software 80 without specific prior written permission. 81 82THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 83ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 84IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 85ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 86FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 87DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 88OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 89HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 90LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 91OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 92SUCH DAMAGE. 93