diff options
-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 |