Lugdunum  0.1.0
SkyBox.inl
Go to the documentation of this file.
1 inline void SkyBox::SkyBox::setName(const std::string& name) {
2  _name = name;
3 }
4 
5 inline void SkyBox::setMagFilter(Render::Texture::Filter magFilter) {
6  _magFilter = magFilter;
7 }
8 
9 inline void SkyBox::setMinFilter(Render::Texture::Filter minFilter) {
10  _minFilter = minFilter;
11 }
12 
13 inline void SkyBox::setMipMapFilter(Render::Texture::Filter mipMapFilter) {
14  _mipMapFilter = mipMapFilter;
15 }
16 
17 inline void SkyBox::setWrapS(Render::Texture::WrappingMode wrapS) {
18  _wrapS = wrapS;
19 }
20 
21 inline void SkyBox::setWrapT(Render::Texture::WrappingMode wrapT) {
22  _wrapT = wrapT;
23 }
24 
25 inline void SkyBox::setWrapW(Render::Texture::WrappingMode wrapW) {
26  _wrapW = wrapW;
27 }
28 
29 inline void SkyBox::setBackgroundFilename(const std::string& filename) {
30  _backgroundFilename = filename;
31 }
32 
33 inline void SkyBox::setEnvironnementFilename(const std::string& filename) {
34  _environnementFilename = filename;
35 }