summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tiletex.h
diff options
context:
space:
mode:
authorEnne Walker <enne.walker@gmail.com>2010-05-14 12:49:58 -0400
committerEnne Walker <enne.walker@gmail.com>2010-05-14 18:18:54 -0400
commit6d0f71ae6f14191940493c0b7465230b1d6c4210 (patch)
tree571c472557764898302b98137ab9302a5da455d5 /crawl-ref/source/tiletex.h
parent6375f13e84238370564a57711c19cffaf3b3009d (diff)
downloadcrawl-ref-6d0f71ae6f14191940493c0b7465230b1d6c4210.tar.gz
crawl-ref-6d0f71ae6f14191940493c0b7465230b1d6c4210.zip
Reduce header dependencies on glwrapper.h.
Diffstat (limited to 'crawl-ref/source/tiletex.h')
-rw-r--r--crawl-ref/source/tiletex.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/tiletex.h b/crawl-ref/source/tiletex.h
index b9521ffeff..ece4100591 100644
--- a/crawl-ref/source/tiletex.h
+++ b/crawl-ref/source/tiletex.h
@@ -7,7 +7,6 @@
#ifndef TILETEX_H
#define TILETEX_H
-#include "glwrapper.h"
#include "tiles.h"
// The different texture types.
@@ -20,6 +19,13 @@ enum TextureID
TEX_MAX
};
+enum MipMapOptions
+{
+ MIPMAP_CREATE,
+ MIPMAP_NONE,
+ MIPMAP_MAX
+};
+
struct tile_def
{
tile_def(int _tile, TextureID _tex, int _ymax = TILE_Y)