diff options
author | David Robillard <d@drobilla.net> | 2020-05-16 21:18:00 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-05-16 21:18:00 +0200 |
commit | a4ac15c1ee94e3a41f2bd799f6d1779428109a76 (patch) | |
tree | 2ae131e1ea45eca3f518496fba225397159469ea /examples | |
parent | ceded7cf5ec0e2bbd140899ea7d5169d7fc30a51 (diff) | |
download | pugl-a4ac15c1ee94e3a41f2bd799f6d1779428109a76.tar.gz pugl-a4ac15c1ee94e3a41f2bd799f6d1779428109a76.tar.bz2 pugl-a4ac15c1ee94e3a41f2bd799f6d1779428109a76.zip |
Use line comments where appropriate
Diffstat (limited to 'examples')
-rw-r--r-- | examples/demo_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/demo_utils.h b/examples/demo_utils.h index 13d839f..6d3bb66 100644 --- a/examples/demo_utils.h +++ b/examples/demo_utils.h @@ -135,7 +135,7 @@ mat4Ortho(mat4 m, m[3][3] = 1.0f; } -/** Calculate a projection matrix for a given perspective. */ +/// Calculate a projection matrix for a given perspective static inline void perspective(float* m, float fov, float aspect, float zNear, float zFar) { |