Alessandro Febretti
Alessandro Febretti
I just posed a fix on the OmegaOsg module. RE the Equalizer errors - Equalizer is not maintained on OSX (Cluster display system support is on Linux & Windows only...
Thank you for the report
This is a known issue - oav is still under heavy testing. My suggestion is to fork and edit it to make it work on your system, then send a...
I double checked the code and it looks correct (https://github.com/uic-evl/omegalib/blob/master/src/omega/osystem.cpp#L412) but I will try running it on our cluster tomorrow to see if I can reproduce. You can also try...
Hi, do you have a specific module failing & the error CMake spits out? The travis build uses CMake 2.8.11 I believe (but only builds the core omegalib, no modules)....
A possible implementation checklist: - [ ] Add `LeftOnly` `RightOnly` stereoModes to DisplayTileConfig - [ ] In `DrawContext::drawFrame` add an if block for the new stereo modes, calling `renderer->draw` with...
Possible solution to fix the tile grid issue: change https://github.com/uic-evl/omegalib/blob/master/include/omega/DisplayConfig.h#L259 ``` cpp DisplayTileConfig* tileGrid[128][128]; ``` to ``` cpp static const int MAX_TILE_GRID_SIZE = 128; vector tileGrid[MAX_TILE_GRID_SIZE][MAX_TILE_GRID_SIZE]; ``` and change the...
I agree that boost::program_options would be better, but ArgumentHelper is exposed to third party apps trhough the oargs() call on orun, so it can't be replaced easily without breaking backward...