Abhi Reddy

Results 27 comments of Abhi Reddy

I have ``` #define EIGEN_WORLD_VERSION 3 #define EIGEN_MAJOR_VERSION 3 #define EIGEN_MINOR_VERSION 90 ``` I tried to remove the custom eigen allocator in brep but i still got the same error...

I'll also try to see if i can reproduce the error without libfive

If I build lib5 as a static lib, and use it I do not get this error? It only happens if I build lib5 as dylib. so it might mean...

changing it to what `lookAt` does seems fix it ``` void Camera::setViewDirection(const glm::dvec3& viewDirection) { mViewDirection = normalize(viewDirection); mOrientation = glm::toQuat(alignZAxisWithTarget(-mViewDirection, mWorldUp)); mModelViewCached = false; } ```

I read more about Core Image. You don't have to create subclasses for each filter. Since every filter uses the same set of parameters. I can try implementing something when...

Cool I'll create sample project for you to look at. I like the getAvailableSettings() function. As for as the context. I am bit uneasy with sharing the context with openFrameworks....

when setting parameters, "setValue forKey" probably throws an exception if the key does not exist. So we can catch that and print an error message ,as well as print a...

I made a sample project here https://github.com/Ahbee/CoreImage_Sample. It works with of 8.1, just clone it into your myApps folder. The api looks good and the code works, but unfortunately there...

I managed to create a separate context and get it to work. It works with glfw and the programmable renderer now. You can find it here https://github.com/Ahbee/ofxCoreImageFilters. You mentioned in...

Basically you have to create a separate openGL context for Core Image. If you look at `createContext()` that is where I do that. Also if you look at `getOutput()` I...