diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2018-04-22 13:22:19 +0200 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2018-04-22 13:22:19 +0200 |
commit | bd3d9e8c59ae1ec4743913ff6a138a9af5b8d1a8 (patch) | |
tree | 11080d9e17603f9451f3d75bbaca15cb0d443afb | |
parent | a53677673de504fe050fced7791b45d80e3fe77b (diff) | |
download | faqe-bd3d9e8c59ae1ec4743913ff6a138a9af5b8d1a8.tar.gz faqe-bd3d9e8c59ae1ec4743913ff6a138a9af5b8d1a8.tar.xz faqe-bd3d9e8c59ae1ec4743913ff6a138a9af5b8d1a8.zip |
Fixup license headers
-rw-r--r-- | assets.c | 4 | ||||
-rw-r--r-- | assets.h | 4 | ||||
-rw-r--r-- | gl.c | 1 | ||||
-rw-r--r-- | glfunc.h | 7 | ||||
-rw-r--r-- | nelem.h | 4 |
5 files changed, 16 insertions, 4 deletions
@@ -1,3 +1,7 @@ +/* + * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ #include "assets.h" extern char _binary_assets_bie_start[]; @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ #ifndef ASSETS_H #define ASSETS_H @@ -2,7 +2,6 @@ * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com> * SPDX-License-Identifier: MIT */ - #include "eprintf.h" #include "gl.h" @@ -1,6 +1,7 @@ -// Copyright (C) Tomasz Kramkowski <tk@the-tk.com> -// SPDX-License-Identifier: MIT - +/* + * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ GL_FUNC(glGetError, GLenum, gl_error, void) GL_FUNC(glViewport, void, gl_viewport, GLint x, GLint y, GLsizei width, GLsizei height) GL_FUNC(glClearColor, void, gl_clearcolor, GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ #ifndef NELEM_H #define NELEM_H |