diff options
author | David Robillard <d@drobilla.net> | 2018-09-15 11:53:27 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-15 11:53:27 +0200 |
commit | 6b488fa9dd17e8e7e4ca9e9a86677d91d049406a (patch) | |
tree | 415742d9c7ac624b90a5e99c3cb1b17f79e624e8 | |
parent | befca854f84b1ebf730dd45b5e63a7928039b32d (diff) | |
download | pugl-6b488fa9dd17e8e7e4ca9e9a86677d91d049406a.tar.gz pugl-6b488fa9dd17e8e7e4ca9e9a86677d91d049406a.tar.bz2 pugl-6b488fa9dd17e8e7e4ca9e9a86677d91d049406a.zip |
Fix minor clang-tidy warnings
-rw-r--r-- | pugl/pugl_x11.c | 2 | ||||
-rw-r--r-- | pugl_cairo_test.c | 4 | ||||
-rw-r--r-- | pugl_test.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c index 03b696d..ef08ac8 100644 --- a/pugl/pugl_x11.c +++ b/pugl/pugl_x11.c @@ -35,8 +35,8 @@ #endif #ifdef PUGL_HAVE_CAIRO -#include <cairo/cairo.h> #include <cairo/cairo-xlib.h> +#include <cairo/cairo.h> #endif #include "pugl/cairo_gl.h" diff --git a/pugl_cairo_test.c b/pugl_cairo_test.c index c04c785..76c3ee7 100644 --- a/pugl_cairo_test.c +++ b/pugl_cairo_test.c @@ -85,8 +85,8 @@ buttonDraw(cairo_t* cr, const Button* but) cairo_set_font_size(cr, 32.0); cairo_text_extents(cr, but->label, &extents); cairo_move_to(cr, - (but->x + but->w / 2) - extents.width / 2, - (but->y + but->h / 2) + extents.height / 2); + (but->x + but->w / 2.0) - extents.width / 2, + (but->y + but->h / 2.0) + extents.height / 2); cairo_set_source_rgba(cr, 0, 0, 0, 1); cairo_show_text(cr, but->label); } diff --git a/pugl_test.c b/pugl_test.c index b0ea04d..fc3d921 100644 --- a/pugl_test.c +++ b/pugl_test.c @@ -85,7 +85,7 @@ static const float cubeVertices[] = { static void perspective(float* m, float fov, float aspect, float zNear, float zFar) { - const float h = tan(fov); + const float h = tanf(fov); const float w = h / aspect; const float depth = zNear - zFar; const float q = (zFar + zNear) / depth; |