aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Texture.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-12 11:44:41 (GMT)
committerfluxgen <fluxgen>2003-08-12 11:44:41 (GMT)
commit9f939d9af99ad01cb7962a241ff62de5d064972d (patch)
tree68e14d2a3b65a0ac6799ae5c30f53c648b2e99d2 /src/FbTk/Texture.cc
parent680407c294b9de22f357b6667ccbc580105b7ce1 (diff)
downloadfluxbox_pavel-9f939d9af99ad01cb7962a241ff62de5d064972d.zip
fluxbox_pavel-9f939d9af99ad01cb7962a241ff62de5d064972d.tar.bz2
added TILED option
Diffstat (limited to 'src/FbTk/Texture.cc')
-rw-r--r--src/FbTk/Texture.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/FbTk/Texture.cc b/src/FbTk/Texture.cc
index ae4710d..4c451cb 100644
--- a/src/FbTk/Texture.cc
+++ b/src/FbTk/Texture.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Texture.cc,v 1.5 2002/12/01 13:42:14 rathnor Exp $ 25// $Id: Texture.cc,v 1.6 2003/08/12 11:44:19 fluxgen Exp $
26 26
27#include "Texture.hh" 27#include "Texture.hh"
28 28
@@ -89,6 +89,9 @@ void Texture::setFromString(const char * const texture_str) {
89 89
90 if (strstr(ts, "interlaced")) 90 if (strstr(ts, "interlaced"))
91 addType(Texture::INTERLACED); 91 addType(Texture::INTERLACED);
92
93 if (strstr(ts, "tiled"))
94 addType(Texture::TILED);
92 } 95 }
93 96
94 delete [] ts; 97 delete [] ts;