Skip to content

Commit cdbc3a5

Browse files
authored
More .h work (#7545)
#changelog #core
1 parent 8804b19 commit cdbc3a5

37 files changed

+167
-134
lines changed

.github/workflows/build-msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
msystem:
2626
- mingw64
27-
- ucrt64
27+
# - ucrt64
2828
defaults:
2929
run:
3030
shell: msys2 {0}

addons/ofxAssimpModelLoader/src/ofxAssimpModelLoader.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#include "ofxAssimpUtils.h"
33
#include "ofLight.h"
44
#include "ofImage.h"
5+
#include "ofPixels.h"
56
#include "ofGraphics.h"
67
#include "ofConstants.h"
78

addons/ofxThreadedImageLoader/src/ofxThreadedImageLoader.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include "ofxThreadedImageLoader.h"
2+
#include "ofLog.h"
23
#include <sstream>
4+
35
ofxThreadedImageLoader::ofxThreadedImageLoader(){
46
nextID = 0;
57
ofAddListener(ofEvents().update, this, &ofxThreadedImageLoader::update);

addons/ofxThreadedImageLoader/src/ofxThreadedImageLoader.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#include "ofThread.h"
44
#include "ofImage.h"
5+
#include "ofPixels.h"
56
#include "ofURLFileLoader.h"
67
#include "ofTypes.h"
78
#include "ofThreadChannel.h"

addons/ofxiOS/src/utils/ofxiOSExtras.mm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131

3232

3333
#include "ofxiOSExtras.h"
34+
#include "ofLog.h"
35+
#include "ofPixels.h"
3436
#include <TargetConditionals.h>
3537
#if TARGET_OS_IOS || (TARGET_OS_IPHONE && !TARGET_OS_TV)
3638

libs/openFrameworks/3d/ofMesh.inl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#include "ofMath.h"
99
#include "ofMathConstants.h"
1010
#include "ofLog.h"
11+
#include "ofColor.h"
12+
1113
#include <unordered_map>
1214

1315
//--------------------------------------------------------------

libs/openFrameworks/3d/ofNode.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#pragma once
33

44
#include "ofParameter.h"
5+
#include <glm/gtc/quaternion.hpp>
56
#include "ofConstants.h"
67
#include "glm/mat4x4.hpp"
78
#include <array>

libs/openFrameworks/events/ofEvent.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include <iostream>
1616
#include <array>
1717

18-
// FIXME: deprecated only
18+
// FIXME: constants deprecated only
1919
#include "ofConstants.h"
2020

2121

libs/openFrameworks/gl/ofGLProgrammableRenderer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "of3dGraphics.h"
88
#include "ofBitmapFont.h"
99
#include "ofPath.h"
10-
#include "ofMaterialBaseTypes.h"
10+
//#include "ofMaterialBaseTypes.h"
1111

1212
class ofShapeTessellation;
1313
class ofFbo;

0 commit comments

Comments
 (0)