GitXplorerGitXplorer
d

Allofw

public
3 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
4367327cda0605aad53469294ed8751f8befbdc3

travis release

ddonghaoren committed 6 years ago
Unverified
6958961973283070c984fac3292701e7d9a1dbf0

travis: build and collect dependencies

ddonghaoren committed 6 years ago
Unverified
c282e0a7cf16e631b9681ac8760958f09b610c2f

fix travis node build

ddonghaoren committed 6 years ago
Unverified
0b219bfc9d23e8d64454b06f0575c0288fadb6f5

travis build - add node module

ddonghaoren committed 6 years ago
Unverified
a7da3cacaf5f0811068e3869d155c9044abdf6cc

travis build fix

ddonghaoren committed 6 years ago
Unverified
0bc7cf61aac2e07175d8c89ede196faa26b1f211

merge with windows branch

ddonghaoren committed 6 years ago

README

The README file for this repository.

Allofw - AlloFramework

A framework for rendering 3D content for multi-projector display systems.

Documentation

Build

The Allofw library contains liballofw and its Node.js bindings allofw.node. You should build then in the following order.

Build liballofw

1. Initialize and checkout dependencies.

git submodule init
git submodule update

2. (optional) If you need Skia graphics support, do the following:

cd liballofw/dependencies/skia
./checkout.sh

# If you are using linux, look into instructions_for_linux.txt,
# there are two changes in the source that needs to be made.

./build.sh

3. Install necessary packages:

For Mac with homebrew:

brew install boost
brew install ffmpeg

For ubuntu:

sudo apt-get install ffmpeg
sudo apt-get install libboost-all-dev

4. Build liballofw

mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/install
# or "cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/install -DWITH_SKIA=NO" if you didn't build Skia.
make -j8
make install

This will install liballofw's shared libraries and header files to the directory you specified.

Build allofw.node

You'll need Node.js 4.0+ for this to compile.

# Setup where allofw was installed.
export PKG_CONFIG_PATH=/path/to/allofw/install/lib/pkgconfig:$PKG_CONFIG_PATH
cd allofw.node
node-gyp configure
make -C build

After you have allofw.node built, you can do the following:

For Mac:

export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/path/to/allofw/install/lib
export DYLD_FALLBACK_LIBRARY_PATH=$DYLD_LIBRARY_PATH
export NODE_PATH=$NODE_PATH:/path/to/allofw.node/build/Release

For Linux, just replace DYLD_LIBRARY_PATH by LD_LIBRARY_PATH.

Then you should be able to run the samples in allofw.node/samples with the node command.

License

Copyright (c) 2015-2016 Donghao Ren

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.