You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey.
The links of the ofxMacam addon are broken in all examples. Just deleting the reference and dragging the src folder back in to xcode worked.
In ofxMacamPs3Eye::update() of ofxMacamPs3Eye.mm I replaced
tex.loadData( getPixels(), getWidth(), getHeight(), GL_RGB);
with
tex.loadData( getPixelsRef() );
I am using xcode 0.8.4
The text was updated successfully, but these errors were encountered:
@Sensebellum, I've received compilation errors and had to rename some source files from *.mm to *.m, after that, as OP said:
In ofxMacamPs3Eye::update() of ofxMacamPs3Eye.mm replace
tex.loadData( getPixels(), getWidth(), getHeight(), GL_RGB);
with
tex.loadData( getPixelsRef() );
And everything will work just fine.
Try using search in your xcode project if you can't find necessary method.
Hey.
The links of the ofxMacam addon are broken in all examples. Just deleting the reference and dragging the src folder back in to xcode worked.
In ofxMacamPs3Eye::update() of ofxMacamPs3Eye.mm I replaced
tex.loadData( getPixels(), getWidth(), getHeight(), GL_RGB);
with
tex.loadData( getPixelsRef() );
I am using xcode 0.8.4
The text was updated successfully, but these errors were encountered: