From 9c238237597de90c73cc65c3fccf2f49bfaa46b4 Mon Sep 17 00:00:00 2001 From: sanine Date: Thu, 21 Oct 2021 21:33:06 -0500 Subject: move test files to the same directories as the files they test --- src/gl/honey_gl.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/gl/honey_gl.h (limited to 'src/gl/honey_gl.h') diff --git a/src/gl/honey_gl.h b/src/gl/honey_gl.h new file mode 100644 index 0000000..fc57037 --- /dev/null +++ b/src/gl/honey_gl.h @@ -0,0 +1,18 @@ +#ifndef HONEY_GL_H +#define HONEY_GL_H + +#include + +#ifdef UNIT_TEST +#include "test/mock/mock_GLFW.h" +#else +#include "glad/glad.h" +#include +#endif + +extern int honey_gl_window_ref; + +bool honey_gl_setup(); + + +#endif -- cgit v1.2.1