From 97074921a6c6c346fa9fea425ad6c57366f2b6f7 Mon Sep 17 00:00:00 2001 From: thesstefan Date: Sat, 27 Jul 2019 13:49:46 +0300 Subject: [PATCH] Included missing header in ofImage.h required for instantination of ofImage_::clone() (#6314) --- libs/openFrameworks/graphics/ofImage.cpp | 1 - libs/openFrameworks/graphics/ofImage.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/openFrameworks/graphics/ofImage.cpp b/libs/openFrameworks/graphics/ofImage.cpp index 0b3f0b58a43..0721a1b8246 100644 --- a/libs/openFrameworks/graphics/ofImage.cpp +++ b/libs/openFrameworks/graphics/ofImage.cpp @@ -2,7 +2,6 @@ #include "ofConstants.h" #include "ofAppRunner.h" #include "FreeImage.h" -#include "ofGLUtils.h" #include "ofURLFileLoader.h" #include "uriparser/Uri.h" diff --git a/libs/openFrameworks/graphics/ofImage.h b/libs/openFrameworks/graphics/ofImage.h index 7e3e8c74245..fb6c77b2a0a 100644 --- a/libs/openFrameworks/graphics/ofImage.h +++ b/libs/openFrameworks/graphics/ofImage.h @@ -5,6 +5,7 @@ #include "ofPixels.h" #include "ofGLBaseTypes.h" #include "ofGraphicsConstants.h" +#include "ofGLUtils.h" class ofFile; class ofBuffer;