diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-10-30 11:14:30 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-11-04 13:15:18 -0700 |
| commit | 37328984e2247ffd247d4b175a1baf5d66b87aed (patch) | |
| tree | 48fd64aa661e06270c770dc758d3130cdce1ab69 /loader | |
| parent | bb387b716650b3b59e9c1f3651ec4c8529acb1ec (diff) | |
| download | usermoji-37328984e2247ffd247d4b175a1baf5d66b87aed.tar.xz | |
misc: Update author information
Author information was added to any file
with the standard license text.
Authors were added that added/changed >= 3%
of the lines of a file.
Diffstat (limited to 'loader')
| -rw-r--r-- | loader/debug_report.c | 5 | ||||
| -rw-r--r-- | loader/debug_report.h | 6 | ||||
| -rw-r--r-- | loader/gpa_helper.h | 4 | ||||
| -rw-r--r-- | loader/loader.c | 10 | ||||
| -rw-r--r-- | loader/loader.h | 9 | ||||
| -rw-r--r-- | loader/table_ops.h | 4 | ||||
| -rw-r--r-- | loader/trampoline.c | 5 | ||||
| -rwxr-xr-x | loader/vk-loader-generate.py | 6 | ||||
| -rw-r--r-- | loader/vk_loader_platform.h | 6 | ||||
| -rw-r--r-- | loader/wsi_swapchain.c | 6 | ||||
| -rw-r--r-- | loader/wsi_swapchain.h | 6 |
11 files changed, 43 insertions, 24 deletions
diff --git a/loader/debug_report.c b/loader/debug_report.c index 3ab70e6f..6ede98c4 100644 --- a/loader/debug_report.c +++ b/loader/debug_report.c @@ -20,9 +20,8 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * Authors: - * Jon Ashburn <jon@lunarg.com> - * Courtney Goeltzenleuchter <courtney@lunarg.com> + * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> + * */ #define _GNU_SOURCE diff --git a/loader/debug_report.h b/loader/debug_report.h index 08eb09fe..00c97e67 100644 --- a/loader/debug_report.h +++ b/loader/debug_report.h @@ -20,9 +20,9 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * Authors: - * Jon Ashburn <jon@lunarg.com> - * Courtney Goeltzenleuchter <courtney@lunarg.com> + * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> + * Author: Jon Ashburn <jon@lunarg.com> + * */ #include "vk_loader_platform.h" diff --git a/loader/gpa_helper.h b/loader/gpa_helper.h index 3c9ff045..779a566e 100644 --- a/loader/gpa_helper.h +++ b/loader/gpa_helper.h @@ -19,6 +19,10 @@ * 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. + * + * Author: Cody Northrop <cody@lunarg.com> + * Author: Jon Ashburn <jon@lunarg.com> + * Author: Tony Barbour <tony@LunarG.com> */ #include <string.h> diff --git a/loader/loader.c b/loader/loader.c index 204500b8..5cef3006 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -20,11 +20,11 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * Authors: - * Chia-I Wu <olv@lunarg.com> - * Jon Ashburn <jon@lunarg.com> - * Courtney Goeltzenleuchter <courtney@lunarg.com> - * Ian Elliott <ian@lunarg.com> + * Author: Chia-I Wu <olvaffe@gmail.com> + * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> + * Author: Ian Elliott <ian@LunarG.com> + * Author: Jon Ashburn <jon@lunarg.com> + * */ #define _GNU_SOURCE #include <stdio.h> diff --git a/loader/loader.h b/loader/loader.h index 5eafb516..f27b892b 100644 --- a/loader/loader.h +++ b/loader/loader.h @@ -20,8 +20,13 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * Authors: - * Chia-I Wu <olv@lunarg.com> + * Author: Chia-I Wu <olvaffe@gmail.com> + * Author: Chia-I Wu <olv@lunarg.com> + * Author: Chris Forbes <chrisf@ijw.co.nz> + * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> + * Author: Jon Ashburn <jon@lunarg.com> + * Author: Tony Barbour <tony@LunarG.com> + * */ #ifndef LOADER_H diff --git a/loader/table_ops.h b/loader/table_ops.h index 4a14d739..d582fd49 100644 --- a/loader/table_ops.h +++ b/loader/table_ops.h @@ -19,6 +19,10 @@ * 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. + * + * Author: Cody Northrop <cody@lunarg.com> + * Author: Jon Ashburn <jon@lunarg.com> + * Author: Tony Barbour <tony@LunarG.com> */ #include <vulkan.h> diff --git a/loader/trampoline.c b/loader/trampoline.c index a5695805..42b091cc 100644 --- a/loader/trampoline.c +++ b/loader/trampoline.c @@ -19,6 +19,11 @@ * 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. + * + * Author: Chris Forbes <chrisf@ijw.co.nz> + * Author: Cody Northrop <cody@lunarg.com> + * Author: Jon Ashburn <jon@lunarg.com> + * Author: Tony Barbour <tony@LunarG.com> */ #define _GNU_SOURCE #include <stdlib.h> diff --git a/loader/vk-loader-generate.py b/loader/vk-loader-generate.py index 2930cd6b..15bd253f 100755 --- a/loader/vk-loader-generate.py +++ b/loader/vk-loader-generate.py @@ -20,6 +20,8 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. # +# Author: Jon Ashburn <jon@lunarg.com> +# import os, sys @@ -107,6 +109,8 @@ class Subcommand(object): * 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. + * + * Author: Jon Ashburn <jon@lunarg.com> */""" def generate_header(self): @@ -325,6 +329,8 @@ class WinDefFileSubcommand(Subcommand): ; 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. + * + * Author: Jon Ashburn <jon@lunarg.com> ;;;; End Copyright Notice ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;""" def generate_header(self): diff --git a/loader/vk_loader_platform.h b/loader/vk_loader_platform.h index 446b6140..4fecaed6 100644 --- a/loader/vk_loader_platform.h +++ b/loader/vk_loader_platform.h @@ -23,9 +23,9 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * Authors: - * Jon Ashburn <jon@luanrg.com> - * Ian Elliott <ian@lunarg.com> + * Author: James Jones <jajones@nvidia.com> + * Author: Tobin Ehlis <tobin@lunarg.com> + * */ #pragma once diff --git a/loader/wsi_swapchain.c b/loader/wsi_swapchain.c index 003dd7de..cea306e7 100644 --- a/loader/wsi_swapchain.c +++ b/loader/wsi_swapchain.c @@ -20,10 +20,8 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * Authors: - * Jon Ashburn <jon@lunarg.com> - * Courtney Goeltzenleuchter <courtney@lunarg.com> - * Ian Elliott <ian@lunarg.com> + * Author: Ian Elliott <ian@lunarg.com> + * */ //#define _ISOC11_SOURCE /* for aligned_alloc() */ diff --git a/loader/wsi_swapchain.h b/loader/wsi_swapchain.h index 21ae1bcd..c263ca97 100644 --- a/loader/wsi_swapchain.h +++ b/loader/wsi_swapchain.h @@ -20,10 +20,8 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * Authors: - * Jon Ashburn <jon@lunarg.com> - * Courtney Goeltzenleuchter <courtney@lunarg.com> - * Ian Elliott <ian@lunarg.com> + * Author: Ian Elliott <ian@lunarg.com> + * */ #include "vk_loader_platform.h" |
