diff --git a/libs/openFrameworks/app/ofAppBaseWindow.h b/libs/openFrameworks/app/ofAppBaseWindow.h index 400e3904b15..0a0f5cff50d 100644 --- a/libs/openFrameworks/app/ofAppBaseWindow.h +++ b/libs/openFrameworks/app/ofAppBaseWindow.h @@ -1,6 +1,7 @@ #pragma once #include "ofWindowSettings.h" +// MARK: Target #include "ofConstants.h" class ofBaseApp; diff --git a/libs/openFrameworks/app/ofAppEGLWindow.h b/libs/openFrameworks/app/ofAppEGLWindow.h index 0020ea561c8..f935cda5c3b 100644 --- a/libs/openFrameworks/app/ofAppEGLWindow.h +++ b/libs/openFrameworks/app/ofAppEGLWindow.h @@ -5,6 +5,7 @@ #include "ofImage.h" #include "ofEvents.h" #include "ofRectangle.h" +// MARK: Target #include "ofConstants.h" #include #include diff --git a/libs/openFrameworks/app/ofAppGLFWWindow.h b/libs/openFrameworks/app/ofAppGLFWWindow.h index b023ffa89e8..180016559fb 100644 --- a/libs/openFrameworks/app/ofAppGLFWWindow.h +++ b/libs/openFrameworks/app/ofAppGLFWWindow.h @@ -3,6 +3,7 @@ #include "ofAppBaseWindow.h" // MARK: Optimize to Pointer #include "ofRectangle.h" +// MARK: Target #include "ofConstants.h" #if defined(TARGET_LINUX) && !defined(TARGET_RASPBERRY_PI_LEGACY) diff --git a/libs/openFrameworks/app/ofAppGlutWindow.h b/libs/openFrameworks/app/ofAppGlutWindow.h index 859e32941a6..41366c1b372 100644 --- a/libs/openFrameworks/app/ofAppGlutWindow.h +++ b/libs/openFrameworks/app/ofAppGlutWindow.h @@ -3,7 +3,7 @@ #include "ofAppBaseWindow.h" #include "ofEvents.h" #include "ofTypes.h" -//#include "ofPixels.h" +// MARK: Target but optional #include "ofConstants.h" template diff --git a/libs/openFrameworks/app/ofAppRunner.h b/libs/openFrameworks/app/ofAppRunner.h index 31bdbd7ed8e..24ba2ce9dcf 100644 --- a/libs/openFrameworks/app/ofAppRunner.h +++ b/libs/openFrameworks/app/ofAppRunner.h @@ -1,6 +1,5 @@ #pragma once -// #include "ofConstants.h" #include "ofMainLoop.h" #include "ofWindowSettings.h" diff --git a/libs/openFrameworks/communication/ofSerial.h b/libs/openFrameworks/communication/ofSerial.h index 773ec0191f7..d0580496667 100644 --- a/libs/openFrameworks/communication/ofSerial.h +++ b/libs/openFrameworks/communication/ofSerial.h @@ -1,6 +1,6 @@ #pragma once -// FIXME: ofConstants targets +// MARK: ofConstants targets #include "ofConstants.h" class ofBuffer; diff --git a/libs/openFrameworks/gl/ofBufferObject.cpp b/libs/openFrameworks/gl/ofBufferObject.cpp index 499e8ab2d11..764d274099a 100644 --- a/libs/openFrameworks/gl/ofBufferObject.cpp +++ b/libs/openFrameworks/gl/ofBufferObject.cpp @@ -1,6 +1,6 @@ #include "ofBufferObject.h" #include "ofAppRunner.h" -#include "ofPixels.h" +//#include "ofPixels.h" #include "ofGLUtils.h" diff --git a/libs/openFrameworks/gl/ofBufferObject.h b/libs/openFrameworks/gl/ofBufferObject.h index 7c8721581f7..d7d4fe15280 100644 --- a/libs/openFrameworks/gl/ofBufferObject.h +++ b/libs/openFrameworks/gl/ofBufferObject.h @@ -1,6 +1,6 @@ #pragma once -// FIXME: platforms plus GL/ headers +// MARK: Targets plus GL/ headers #include "ofConstants.h" template diff --git a/libs/openFrameworks/gl/ofFbo.cpp b/libs/openFrameworks/gl/ofFbo.cpp index fe64357b564..5d114de1aed 100644 --- a/libs/openFrameworks/gl/ofFbo.cpp +++ b/libs/openFrameworks/gl/ofFbo.cpp @@ -3,6 +3,7 @@ #include "ofUtils.h" #include "ofGraphics.h" #include "ofGLRenderer.h" +// MARK: Targets #include "ofConstants.h" #include diff --git a/libs/openFrameworks/gl/ofGLUtils.h b/libs/openFrameworks/gl/ofGLUtils.h index bce8b08850d..5b4aa5ba85d 100644 --- a/libs/openFrameworks/gl/ofGLUtils.h +++ b/libs/openFrameworks/gl/ofGLUtils.h @@ -8,6 +8,7 @@ #pragma once #include "ofGraphicsConstants.h" +// MARK: Targets / Defines #include "ofConstants.h" class ofShader; diff --git a/libs/openFrameworks/gl/ofShader.h b/libs/openFrameworks/gl/ofShader.h index 50fbe69f259..ee5d9c522d8 100644 --- a/libs/openFrameworks/gl/ofShader.h +++ b/libs/openFrameworks/gl/ofShader.h @@ -7,7 +7,7 @@ make sure to catch and report that error. */ -// FIXME: ofConstants Targets +// MARK: ofConstants Targets #include "ofConstants.h" #define GLM_FORCE_CTOR_INIT diff --git a/libs/openFrameworks/gl/ofShadow.cpp b/libs/openFrameworks/gl/ofShadow.cpp index 2b46cd3185f..6f9c6c4ad39 100644 --- a/libs/openFrameworks/gl/ofShadow.cpp +++ b/libs/openFrameworks/gl/ofShadow.cpp @@ -11,7 +11,7 @@ #include "ofGLUtils.h" #include "ofLight.h" #include "ofGLProgrammableRenderer.h" -// FIXME: ofConstants Targets +// MARK: ofConstants Targets #include "ofConstants.h" #define GLM_FORCE_CTOR_INIT diff --git a/libs/openFrameworks/gl/ofTexture.h b/libs/openFrameworks/gl/ofTexture.h index 01e6ec6e399..85200e5b70b 100644 --- a/libs/openFrameworks/gl/ofTexture.h +++ b/libs/openFrameworks/gl/ofTexture.h @@ -1,6 +1,7 @@ #pragma once #include "ofGraphicsBaseTypes.h" +// MARK: Targets, some can be moved to cpp #include "ofConstants.h" #include "glm/mat4x4.hpp" diff --git a/libs/openFrameworks/gl/ofVbo.h b/libs/openFrameworks/gl/ofVbo.h index 8582eb26915..1f76fe27168 100644 --- a/libs/openFrameworks/gl/ofVbo.h +++ b/libs/openFrameworks/gl/ofVbo.h @@ -4,6 +4,7 @@ #include "ofGraphicsConstants.h" #include "ofBufferObject.h" +// FIXME: Targets but it can be optional #include "ofConstants.h" #include diff --git a/libs/openFrameworks/graphics/ofBitmapFont.h b/libs/openFrameworks/graphics/ofBitmapFont.h index 4f7be4c9a95..5ecc4227e29 100644 --- a/libs/openFrameworks/graphics/ofBitmapFont.h +++ b/libs/openFrameworks/graphics/ofBitmapFont.h @@ -1,7 +1,7 @@ #pragma once #include "ofRectangle.h" -#include "ofPixels.h" +#include "ofPixels.h" //MARK: unique_ptr #include "ofTexture.h" #include "ofGraphics.h" diff --git a/libs/openFrameworks/graphics/ofCairoRenderer.h b/libs/openFrameworks/graphics/ofCairoRenderer.h index 54ffda7914d..b5203f0ca2d 100644 --- a/libs/openFrameworks/graphics/ofCairoRenderer.h +++ b/libs/openFrameworks/graphics/ofCairoRenderer.h @@ -4,7 +4,7 @@ #include "ofGraphicsBaseTypes.h" // MARK: Optimization opportunity in ofPath, ofPixels pointer. #include "ofPath.h" -#include "ofPixels.h" +#include "ofPixels.h" // MARK: ofPixels imageBuffer; #include "of3dGraphics.h" #include diff --git a/libs/openFrameworks/graphics/ofImage.h b/libs/openFrameworks/graphics/ofImage.h index a97765ab5ed..44eb8642ff4 100644 --- a/libs/openFrameworks/graphics/ofImage.h +++ b/libs/openFrameworks/graphics/ofImage.h @@ -4,7 +4,6 @@ #include "ofGLBaseTypes.h" #include "ofGraphicsConstants.h" #include "ofGLUtils.h" -#include "ofConstants.h" template class ofPixels_; diff --git a/libs/openFrameworks/graphics/ofPath.h b/libs/openFrameworks/graphics/ofPath.h index 898f5e1f127..f941ab93b99 100644 --- a/libs/openFrameworks/graphics/ofPath.h +++ b/libs/openFrameworks/graphics/ofPath.h @@ -3,7 +3,7 @@ #include "ofPolyline.h" #include "ofVboMesh.h" #include "ofTessellator.h" -// FIXME: ofConstants targets +// MARK: ofConstants targets #include "ofConstants.h" template diff --git a/libs/openFrameworks/graphics/ofPolyline.inl b/libs/openFrameworks/graphics/ofPolyline.inl index 586229da6f6..1e897664707 100644 --- a/libs/openFrameworks/graphics/ofPolyline.inl +++ b/libs/openFrameworks/graphics/ofPolyline.inl @@ -8,7 +8,7 @@ #include "ofAppRunner.h" #include "ofMath.h" #include "ofLog.h" -#include "ofConstants.h" +//#include "ofConstants.h" //---------------------------------------------------------- template diff --git a/libs/openFrameworks/graphics/ofTrueTypeFont.h b/libs/openFrameworks/graphics/ofTrueTypeFont.h index 1081b42a6ee..a8e3967f417 100644 --- a/libs/openFrameworks/graphics/ofTrueTypeFont.h +++ b/libs/openFrameworks/graphics/ofTrueTypeFont.h @@ -2,7 +2,7 @@ // MARK: optimization opportunity: unique pointer and remove ofMesh, ofPixels, ofRectangle, ofTexture #include "ofMesh.h" -#include "ofPixels.h" +#include "ofPixels.h" // Glyph ofPixels pixels #include "ofRectangle.h" #include "ofTexture.h" #include diff --git a/libs/openFrameworks/math/ofMathConstants.h b/libs/openFrameworks/math/ofMathConstants.h index 7c5a82f341c..aff7c5343cf 100644 --- a/libs/openFrameworks/math/ofMathConstants.h +++ b/libs/openFrameworks/math/ofMathConstants.h @@ -1,5 +1,6 @@ #pragma once +// MARK: if OF_USE_LEGACY_VECTOR_MATH #include "ofConstants.h" #include "glm/fwd.hpp" diff --git a/libs/openFrameworks/math/ofMatrix3x3.h b/libs/openFrameworks/math/ofMatrix3x3.h index bdad86ba1ad..063b9a83f63 100644 --- a/libs/openFrameworks/math/ofMatrix3x3.h +++ b/libs/openFrameworks/math/ofMatrix3x3.h @@ -5,8 +5,10 @@ #pragma once -#include "ofConstants.h" +//#include "ofConstants.h" +#define GLM_FORCE_CTOR_INIT #include +#include /// \brief A 3x3 Matrix diff --git a/libs/openFrameworks/math/ofMatrix4x4.h b/libs/openFrameworks/math/ofMatrix4x4.h index 40d4f7817a6..7e77ec5309b 100644 --- a/libs/openFrameworks/math/ofMatrix4x4.h +++ b/libs/openFrameworks/math/ofMatrix4x4.h @@ -13,7 +13,8 @@ #include "ofVec4f.h" #include "ofQuaternion.h" #include "ofMathConstants.h" -#include "ofConstants.h" +//#include "ofConstants.h" +#define GLM_FORCE_CTOR_INIT #include "glm/mat4x4.hpp" #include diff --git a/libs/openFrameworks/math/ofQuaternion.h b/libs/openFrameworks/math/ofQuaternion.h index 00eca944301..2051ad21f61 100644 --- a/libs/openFrameworks/math/ofQuaternion.h +++ b/libs/openFrameworks/math/ofQuaternion.h @@ -14,7 +14,7 @@ #include "ofVec3f.h" #include "ofVec4f.h" //class ofVec4f; -#include "ofConstants.h" +//#include "ofConstants.h" #include #if (_MSC_VER) diff --git a/libs/openFrameworks/math/ofVec3f.h b/libs/openFrameworks/math/ofVec3f.h index 524f62157c0..0a7651098c3 100644 --- a/libs/openFrameworks/math/ofVec3f.h +++ b/libs/openFrameworks/math/ofVec3f.h @@ -3,7 +3,8 @@ #include "ofVec2f.h" #include "ofVec4f.h" #include "ofMathConstants.h" -#include "ofConstants.h" +//#include "ofConstants.h" +#define GLM_FORCE_CTOR_INIT #include "glm/vec3.hpp" #include #include diff --git a/libs/openFrameworks/ofMain.h b/libs/openFrameworks/ofMain.h index c060b9694af..3c6dcb3610a 100644 --- a/libs/openFrameworks/ofMain.h +++ b/libs/openFrameworks/ofMain.h @@ -115,8 +115,8 @@ using namespace std; #else - // this will eventually be disabled by default - #define OF_USE_MINIMAL_STD +// this will eventually be disabled by default +#define OF_USE_MINIMAL_STD #ifdef OF_USE_MINIMAL_STD using std::cout; using std::deque; diff --git a/libs/openFrameworks/sound/ofAVEngineSoundPlayer.h b/libs/openFrameworks/sound/ofAVEngineSoundPlayer.h index 51cc5cc3f44..6c7edb9f28f 100644 --- a/libs/openFrameworks/sound/ofAVEngineSoundPlayer.h +++ b/libs/openFrameworks/sound/ofAVEngineSoundPlayer.h @@ -7,6 +7,7 @@ #pragma once +// MARK: Review later #include "ofConstants.h" #ifdef OF_SOUND_PLAYER_AV_ENGINE diff --git a/libs/openFrameworks/sound/ofFmodSoundPlayer.h b/libs/openFrameworks/sound/ofFmodSoundPlayer.h index 0e54f75710f..bc37108b703 100644 --- a/libs/openFrameworks/sound/ofFmodSoundPlayer.h +++ b/libs/openFrameworks/sound/ofFmodSoundPlayer.h @@ -1,5 +1,6 @@ #pragma once +// MARK: Review later #include "ofConstants.h" #ifdef OF_SOUND_PLAYER_FMOD diff --git a/libs/openFrameworks/sound/ofOpenALSoundPlayer.h b/libs/openFrameworks/sound/ofOpenALSoundPlayer.h index b244ad397ff..74278a75493 100644 --- a/libs/openFrameworks/sound/ofOpenALSoundPlayer.h +++ b/libs/openFrameworks/sound/ofOpenALSoundPlayer.h @@ -1,5 +1,6 @@ #pragma once +// MARK: Review later #include "ofConstants.h" #ifdef OF_SOUND_PLAYER_OPENAL diff --git a/libs/openFrameworks/sound/ofRtAudioSoundStream.h b/libs/openFrameworks/sound/ofRtAudioSoundStream.h index 5db86121b21..1fcd38830c3 100644 --- a/libs/openFrameworks/sound/ofRtAudioSoundStream.h +++ b/libs/openFrameworks/sound/ofRtAudioSoundStream.h @@ -2,7 +2,7 @@ #include "ofSoundBaseTypes.h" #include "ofSoundBuffer.h" -#include "ofConstants.h" +//#include "ofConstants.h" typedef unsigned int RtAudioStreamStatus; class RtAudio; diff --git a/libs/openFrameworks/sound/ofSoundBaseTypes.h b/libs/openFrameworks/sound/ofSoundBaseTypes.h index 65f4499b214..9996621a2a5 100644 --- a/libs/openFrameworks/sound/ofSoundBaseTypes.h +++ b/libs/openFrameworks/sound/ofSoundBaseTypes.h @@ -1,6 +1,6 @@ #pragma once -// FIXME: ofConstants FS +// MARK: ofConstants FS #include "ofConstants.h" #include diff --git a/libs/openFrameworks/sound/ofSoundPlayer.h b/libs/openFrameworks/sound/ofSoundPlayer.h index c89cfbf0cbd..66105c1d34e 100644 --- a/libs/openFrameworks/sound/ofSoundPlayer.h +++ b/libs/openFrameworks/sound/ofSoundPlayer.h @@ -1,7 +1,7 @@ #pragma once #include "ofSoundBaseTypes.h" -// FIXME: ofConstants FS +// MARK: ofConstants FS #include "ofConstants.h" /// \brief Stops all active sound players on FMOD-based systems (windows, osx). diff --git a/libs/openFrameworks/types/ofParameter.h b/libs/openFrameworks/types/ofParameter.h index d5a3c1fcef5..16dfd7ffe14 100644 --- a/libs/openFrameworks/types/ofParameter.h +++ b/libs/openFrameworks/types/ofParameter.h @@ -8,7 +8,6 @@ #include "ofRectangle.h" #include "ofLog.h" -// #include "ofConstants.h" #include "ofColor.h" template diff --git a/libs/openFrameworks/types/ofTypes.h b/libs/openFrameworks/types/ofTypes.h index 83c643806d6..007bbc04828 100644 --- a/libs/openFrameworks/types/ofTypes.h +++ b/libs/openFrameworks/types/ofTypes.h @@ -1,6 +1,5 @@ #pragma once -// #include "ofConstants.h" //---------------------------------------------------------- // ofMutex diff --git a/libs/openFrameworks/utils/ofFileUtils.h b/libs/openFrameworks/utils/ofFileUtils.h index 93698d93ae6..c7096ff4116 100644 --- a/libs/openFrameworks/utils/ofFileUtils.h +++ b/libs/openFrameworks/utils/ofFileUtils.h @@ -1,6 +1,6 @@ #pragma once -// FIXME: ofConstants FS +// MARK: ofConstants FS #include "ofConstants.h" #include diff --git a/libs/openFrameworks/utils/ofFpsCounter.h b/libs/openFrameworks/utils/ofFpsCounter.h index d20bd6bf6ac..066daee41b3 100644 --- a/libs/openFrameworks/utils/ofFpsCounter.h +++ b/libs/openFrameworks/utils/ofFpsCounter.h @@ -2,7 +2,6 @@ // ofTime only #include "ofUtils.h" -// #include "ofConstants.h" #include class ofFpsCounter { diff --git a/libs/openFrameworks/utils/ofLog.h b/libs/openFrameworks/utils/ofLog.h index 3b852d5744c..3b951c7a524 100644 --- a/libs/openFrameworks/utils/ofLog.h +++ b/libs/openFrameworks/utils/ofLog.h @@ -2,7 +2,6 @@ // Only private ofFile file; #include "ofFileUtils.h" -// #include "ofConstants.h" #include "ofUtils.h" // ofVAArgsToString #include diff --git a/libs/openFrameworks/utils/ofUtils.h b/libs/openFrameworks/utils/ofUtils.h index a67e1181191..81ea66f790a 100644 --- a/libs/openFrameworks/utils/ofUtils.h +++ b/libs/openFrameworks/utils/ofUtils.h @@ -1,6 +1,6 @@ #pragma once -// this must be included before the TARGET_MINGW test +// MARK: TARGET_MINGW test #include "ofConstants.h" #if !defined(TARGET_MINGW) diff --git a/libs/openFrameworks/video/ofAVFoundationGrabber.h b/libs/openFrameworks/video/ofAVFoundationGrabber.h index d7d31c4999a..b5b7a884174 100644 --- a/libs/openFrameworks/video/ofAVFoundationGrabber.h +++ b/libs/openFrameworks/video/ofAVFoundationGrabber.h @@ -12,7 +12,7 @@ #include "ofVideoBaseTypes.h" #include "ofTexture.h" #include "ofThread.h" -// FIXME: Template +// MARK: Template, if #include "ofPixels.h" #include diff --git a/libs/openFrameworks/video/ofAVFoundationPlayer.h b/libs/openFrameworks/video/ofAVFoundationPlayer.h index 9d0149fd931..c6261049346 100644 --- a/libs/openFrameworks/video/ofAVFoundationPlayer.h +++ b/libs/openFrameworks/video/ofAVFoundationPlayer.h @@ -9,7 +9,7 @@ #include "ofVideoBaseTypes.h" #include "ofTexture.h" #include "ofThread.h" -// FIXME: Template +// MARK: Template if pixels is changed to unique_ptr #include "ofPixels.h" #ifdef __OBJC__ diff --git a/libs/openFrameworks/video/ofDirectShowGrabber.h b/libs/openFrameworks/video/ofDirectShowGrabber.h index c82ea061052..d7f3d9b2948 100644 --- a/libs/openFrameworks/video/ofDirectShowGrabber.h +++ b/libs/openFrameworks/video/ofDirectShowGrabber.h @@ -1,9 +1,10 @@ #pragma once +// MARK: OF_VIDEO_CAPTURE_DIRECTSHOW #include "ofConstants.h" #include "ofTexture.h" #include "ofVideoBaseTypes.h" -#include "ofPixels.h" +#include "ofPixels.h" // MARK: ofPixels pixels #ifdef OF_VIDEO_CAPTURE_DIRECTSHOW #include "videoInput.h" @@ -26,8 +27,8 @@ class ofDirectShowGrabber : public ofBaseVideoGrabber{ bool setPixelFormat(ofPixelFormat pixelFormat); ofPixelFormat getPixelFormat() const; - ofPixels& getPixels(); - const ofPixels& getPixels() const; + ofPixels & getPixels(); + const ofPixels & getPixels() const; void close(); void clearMemory(); @@ -50,7 +51,7 @@ class ofDirectShowGrabber : public ofBaseVideoGrabber{ int deviceID; bool bVerbose; bool bGrabberInited; - ofPixels pixels; + ofPixels pixels; int attemptFramerate; bool bIsFrameNew; diff --git a/libs/openFrameworks/video/ofDirectShowPlayer.cpp b/libs/openFrameworks/video/ofDirectShowPlayer.cpp index 9c25bf4f68a..5c80f2d9014 100644 --- a/libs/openFrameworks/video/ofDirectShowPlayer.cpp +++ b/libs/openFrameworks/video/ofDirectShowPlayer.cpp @@ -1,5 +1,5 @@ #include "ofDirectShowPlayer.h" -#include "ofPixels.h" +#include "ofPixels.h" // MARK: pixels, srcBuffer #include "ofMath.h" #ifdef _MSC_VER diff --git a/libs/openFrameworks/video/ofDirectShowPlayer.h b/libs/openFrameworks/video/ofDirectShowPlayer.h index 1f8203c79b0..427d14ba0d5 100644 --- a/libs/openFrameworks/video/ofDirectShowPlayer.h +++ b/libs/openFrameworks/video/ofDirectShowPlayer.h @@ -3,7 +3,7 @@ //To allow for QuickTime video playback install the K-Lite Mega Codec Pack 10.2 #pragma once -#include "ofConstants.h" +//#include "ofConstants.h" #include "ofVideoBaseTypes.h" template diff --git a/libs/openFrameworks/video/ofGstUtils.h b/libs/openFrameworks/video/ofGstUtils.h index 25d0605709b..f01347a64fe 100644 --- a/libs/openFrameworks/video/ofGstUtils.h +++ b/libs/openFrameworks/video/ofGstUtils.h @@ -1,5 +1,6 @@ #pragma once +// MARK: TARGET_ANDROID - maybe it can be removed #include "ofConstants.h" #ifndef TARGET_ANDROID #include "ofPixels.h" @@ -167,8 +168,8 @@ class ofGstVideoUtils: public ofBaseVideo, public ofGstUtils{ void reallocateOnNextFrame(); bool isFrameNew() const; - ofPixels& getPixels(); - const ofPixels& getPixels() const; + ofPixels & getPixels(); + const ofPixels & getPixels() const; ofTexture * getTexture(); void update(); diff --git a/libs/openFrameworks/video/ofGstVideoGrabber.cpp b/libs/openFrameworks/video/ofGstVideoGrabber.cpp index ece749a5662..f2d363da82c 100644 --- a/libs/openFrameworks/video/ofGstVideoGrabber.cpp +++ b/libs/openFrameworks/video/ofGstVideoGrabber.cpp @@ -840,7 +840,7 @@ bool ofGstVideoGrabber::isFrameNew() const { } -ofPixels& ofGstVideoGrabber::getPixels(){ +ofPixels & ofGstVideoGrabber::getPixels(){ return videoUtils.getPixels(); } diff --git a/libs/openFrameworks/video/ofMediaFoundationPlayer.h b/libs/openFrameworks/video/ofMediaFoundationPlayer.h index 20c0f2e5425..c3c4f01762c 100644 --- a/libs/openFrameworks/video/ofMediaFoundationPlayer.h +++ b/libs/openFrameworks/video/ofMediaFoundationPlayer.h @@ -34,9 +34,9 @@ #include #include #include -#include "ofConstants.h" +//#include "ofConstants.h" #include "ofVideoBaseTypes.h" -#include "ofPixels.h" +#include "ofPixels.h" //mSrcPixels #include "ofFbo.h" #include "ofEvent.h" diff --git a/libs/openFrameworks/video/ofVideoPlayer.h b/libs/openFrameworks/video/ofVideoPlayer.h index 655d816ef6c..5f853f6be12 100644 --- a/libs/openFrameworks/video/ofVideoPlayer.h +++ b/libs/openFrameworks/video/ofVideoPlayer.h @@ -2,7 +2,7 @@ #include "ofTexture.h" #include "ofVideoBaseTypes.h" -#include "ofConstants.h" +//#include "ofConstants.h" //--------------------------------------------- class ofVideoPlayer : public ofBaseVideoDraws {