2011-02-03 16:15:25 +08:00
|
|
|
Import('env', 'plugins')
|
|
|
|
|
2011-07-03 08:56:24 +08:00
|
|
|
|
|
|
|
# Dielectric microfacet materials
|
2011-06-01 08:20:53 +08:00
|
|
|
plugins += env.SharedLibrary('dielectric', ['dielectric.cpp'])
|
2011-07-03 08:56:24 +08:00
|
|
|
plugins += env.SharedLibrary('roughdielectric', ['roughdielectric.cpp'])
|
|
|
|
|
|
|
|
plugins += env.SharedLibrary('lambertian', ['lambertian.cpp'])
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-06-01 08:20:53 +08:00
|
|
|
plugins += env.SharedLibrary('mirror', ['mirror.cpp'])
|
|
|
|
plugins += env.SharedLibrary('difftrans', ['difftrans.cpp'])
|
|
|
|
plugins += env.SharedLibrary('mask', ['mask.cpp'])
|
|
|
|
plugins += env.SharedLibrary('ward', ['ward.cpp'])
|
|
|
|
plugins += env.SharedLibrary('phong', ['phong.cpp'])
|
|
|
|
plugins += env.SharedLibrary('microfacet', ['microfacet.cpp'])
|
|
|
|
plugins += env.SharedLibrary('roughmetal', ['roughmetal.cpp'])
|
|
|
|
plugins += env.SharedLibrary('composite', ['composite.cpp'])
|
|
|
|
plugins += env.SharedLibrary('twosided', ['twosided.cpp'])
|
|
|
|
plugins += env.SharedLibrary('irawan', ['irawan.cpp'])
|
2011-02-03 16:15:25 +08:00
|
|
|
|
|
|
|
Export('plugins')
|