From d06458454d3c8550b9141120716758e786eee280 Mon Sep 17 00:00:00 2001 From: Draklaw Date: Sun, 27 Feb 2022 23:51:40 +0100 Subject: [PATCH] Copyright notice + very basic Readme. --- CMakeLists.txt | 2 ++ README.md | 2 ++ shaders/shader.frag | 1 + shaders/shader.geom | 1 + shaders/shader.vert | 1 + src/Planet.cpp | 1 + src/Planet.h | 1 + src/Simplex.cpp | 1 + src/Simplex.h | 1 + src/VkExpe.cpp | 1 + src/VkExpe.h | 1 + src/VulkanTutorial.cpp | 1 + src/VulkanTutorial.h | 1 + src/core/ArrayView.h | 1 + src/core/Logger.cpp | 1 + src/core/Logger.h | 1 + src/core/math.cpp | 1 + src/core/math.h | 1 + src/core/types.h | 1 + src/core/utils.cpp | 1 + src/core/utils.h | 1 + src/main.cpp | 1 + src/vk/Buffer.cpp | 1 + src/vk/Buffer.h | 1 + src/vk/Context.cpp | 1 + src/vk/Context.h | 1 + src/vk/Memory.cpp | 1 + src/vk/Memory.h | 1 + src/vk/Swapchain.cpp | 1 + src/vk/Swapchain.h | 1 + src/vk/forward.h | 1 + 31 files changed, 33 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4bbf72..472e85a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,5 @@ +# Copyright 2022 Simon Boyé + cmake_minimum_required(VERSION 3.0.0) project(vk_expe VERSION 0.1.0) diff --git a/README.md b/README.md index e69de29..5b25a1f 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,2 @@ +# vk_expe - A simple project to experiment with Vulkan + diff --git a/shaders/shader.frag b/shaders/shader.frag index 84b2e55..a015b24 100644 --- a/shaders/shader.frag +++ b/shaders/shader.frag @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #version 450 layout(location = 1) in vec3 in_normal; diff --git a/shaders/shader.geom b/shaders/shader.geom index ea8f235..f924475 100644 --- a/shaders/shader.geom +++ b/shaders/shader.geom @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #version 450 layout(triangles) in; diff --git a/shaders/shader.vert b/shaders/shader.vert index 5438978..aa8206e 100644 --- a/shaders/shader.vert +++ b/shaders/shader.vert @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #version 450 layout(binding = 0) uniform Uniforms { diff --git a/src/Planet.cpp b/src/Planet.cpp index 37fb79e..9917af2 100644 --- a/src/Planet.cpp +++ b/src/Planet.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include diff --git a/src/Planet.h b/src/Planet.h index 1a7b96b..3bfaca5 100644 --- a/src/Planet.h +++ b/src/Planet.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once #include diff --git a/src/Simplex.cpp b/src/Simplex.cpp index 8f27bdb..29e3e8d 100644 --- a/src/Simplex.cpp +++ b/src/Simplex.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include diff --git a/src/Simplex.h b/src/Simplex.h index 4501bc2..585ab5c 100644 --- a/src/Simplex.h +++ b/src/Simplex.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once #include diff --git a/src/VkExpe.cpp b/src/VkExpe.cpp index 448fdef..6fb7576 100644 --- a/src/VkExpe.cpp +++ b/src/VkExpe.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include #include diff --git a/src/VkExpe.h b/src/VkExpe.h index e36371b..23b49cf 100644 --- a/src/VkExpe.h +++ b/src/VkExpe.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once #include diff --git a/src/VulkanTutorial.cpp b/src/VulkanTutorial.cpp index 0438ac0..4ffa6b9 100644 --- a/src/VulkanTutorial.cpp +++ b/src/VulkanTutorial.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include #include diff --git a/src/VulkanTutorial.h b/src/VulkanTutorial.h index fc86fe6..908c4d5 100644 --- a/src/VulkanTutorial.h +++ b/src/VulkanTutorial.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once #include diff --git a/src/core/ArrayView.h b/src/core/ArrayView.h index 9ee4b30..e43a58e 100644 --- a/src/core/ArrayView.h +++ b/src/core/ArrayView.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once diff --git a/src/core/Logger.cpp b/src/core/Logger.cpp index 230e85a..949d2cb 100644 --- a/src/core/Logger.cpp +++ b/src/core/Logger.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include #include diff --git a/src/core/Logger.h b/src/core/Logger.h index 27fedd6..eb1660a 100644 --- a/src/core/Logger.h +++ b/src/core/Logger.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once #include diff --git a/src/core/math.cpp b/src/core/math.cpp index 7e23ff9..ebd395b 100644 --- a/src/core/math.cpp +++ b/src/core/math.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include diff --git a/src/core/math.h b/src/core/math.h index ae9efce..cd6dd26 100644 --- a/src/core/math.h +++ b/src/core/math.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once diff --git a/src/core/types.h b/src/core/types.h index f26c2a8..f381d44 100644 --- a/src/core/types.h +++ b/src/core/types.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once diff --git a/src/core/utils.cpp b/src/core/utils.cpp index c1d5a66..55a392c 100644 --- a/src/core/utils.cpp +++ b/src/core/utils.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include #include diff --git a/src/core/utils.h b/src/core/utils.h index 8b56d2b..2c14b56 100644 --- a/src/core/utils.h +++ b/src/core/utils.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once #include diff --git a/src/main.cpp b/src/main.cpp index f29c4e7..1a67ffe 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include #include diff --git a/src/vk/Buffer.cpp b/src/vk/Buffer.cpp index df291d7..a4a3d3b 100644 --- a/src/vk/Buffer.cpp +++ b/src/vk/Buffer.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include #include diff --git a/src/vk/Buffer.h b/src/vk/Buffer.h index 5782ea7..59e8859 100644 --- a/src/vk/Buffer.h +++ b/src/vk/Buffer.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once #include diff --git a/src/vk/Context.cpp b/src/vk/Context.cpp index c475162..135f919 100644 --- a/src/vk/Context.cpp +++ b/src/vk/Context.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include #include diff --git a/src/vk/Context.h b/src/vk/Context.h index 63c4faf..76583b2 100644 --- a/src/vk/Context.h +++ b/src/vk/Context.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once #include diff --git a/src/vk/Memory.cpp b/src/vk/Memory.cpp index cf4a9f0..d8f5303 100644 --- a/src/vk/Memory.cpp +++ b/src/vk/Memory.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include #include diff --git a/src/vk/Memory.h b/src/vk/Memory.h index 4ff2cd3..e140c9c 100644 --- a/src/vk/Memory.h +++ b/src/vk/Memory.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once #include diff --git a/src/vk/Swapchain.cpp b/src/vk/Swapchain.cpp index da07eba..aad026b 100644 --- a/src/vk/Swapchain.cpp +++ b/src/vk/Swapchain.cpp @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include #include diff --git a/src/vk/Swapchain.h b/src/vk/Swapchain.h index 736de04..c6adff8 100644 --- a/src/vk/Swapchain.h +++ b/src/vk/Swapchain.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #pragma once #include diff --git a/src/vk/forward.h b/src/vk/forward.h index 104a6b7..078d3a4 100644 --- a/src/vk/forward.h +++ b/src/vk/forward.h @@ -1,3 +1,4 @@ +// Copyright 2022 Simon Boyé #include