From: Steinar H. Gunderson Date: Sun, 4 Oct 2015 15:32:24 +0000 (+0200) Subject: Fix a compile error related to gl.h choices. X-Git-Tag: 1.0.0~310 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=340de19ccede5808c033e8706070731204b832a4 Fix a compile error related to gl.h choices. --- diff --git a/main.cpp b/main.cpp index 9ea610f..b39fafe 100644 --- a/main.cpp +++ b/main.cpp @@ -1,3 +1,4 @@ +#include #include #include #include diff --git a/ref_counted_gl_sync.h b/ref_counted_gl_sync.h index 5e23752..8b6a8af 100644 --- a/ref_counted_gl_sync.h +++ b/ref_counted_gl_sync.h @@ -6,7 +6,7 @@ // places. (We could set two fences at the same time, but they are not an // unlimited hardware resource, so it would be a bit wasteful.) -#include +#include #include typedef std::shared_ptr<__GLsync> RefCountedGLsyncBase;