Separate out the BaseVolume definitions into their own file
This commit is contained in:
20
library/bindings/BaseVolume.i
Normal file
20
library/bindings/BaseVolume.i
Normal file
@ -0,0 +1,20 @@
|
||||
%module SimpleVolume
|
||||
%{
|
||||
#include "Material.h"
|
||||
#include "Density.h"
|
||||
#include "BaseVolume.h"
|
||||
%}
|
||||
|
||||
%include "Material.h"
|
||||
%include "Density.h"
|
||||
%include "BaseVolume.h"
|
||||
|
||||
%template(BaseVolumeDensity8) PolyVox::BaseVolume<PolyVox::Density8>;
|
||||
|
||||
%template(BaseVolumeMaterial8) PolyVox::BaseVolume<PolyVox::Material8>;
|
||||
|
||||
%template(BaseVolumeMaterial16) PolyVox::BaseVolume<PolyVox::Material16>;
|
||||
|
||||
%template(BaseVolumeMaterialDensityPair44) PolyVox::BaseVolume<PolyVox::MaterialDensityPair44>;
|
||||
|
||||
%template(BaseVolumeMaterialDensityPair88) PolyVox::BaseVolume<PolyVox::MaterialDensityPair88>;
|
Reference in New Issue
Block a user