summaryrefslogtreecommitdiffstats
path: root/src/graphics/common/device.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/common/device.cpp')
-rw-r--r--src/graphics/common/device.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/graphics/common/device.cpp b/src/graphics/common/device.cpp
index 79102b2..fcd4318 100644
--- a/src/graphics/common/device.cpp
+++ b/src/graphics/common/device.cpp
@@ -31,26 +31,3 @@ void Gfx::DeviceConfig::LoadDefault()
doubleBuf = true;
noFrame = false;
}
-
-void Gfx::TextureCreateParams::LoadDefault()
-{
- alpha = false;
- mipmap = false;
-
- minFilter = Gfx::TEX_MIN_FILTER_NEAREST;
- magFilter = Gfx::TEX_MAG_FILTER_NEAREST;
-
- wrapS = Gfx::TEX_WRAP_REPEAT;
- wrapT = Gfx::TEX_WRAP_REPEAT;
-}
-
-void Gfx::TextureParams::LoadDefault()
-{
- colorOperation = Gfx::TEX_MIX_OPER_MODULATE;
- colorArg1 = Gfx::TEX_MIX_ARG_CURRENT;
- colorArg2 = Gfx::TEX_MIX_ARG_TEXTURE;
-
- alphaOperation = Gfx::TEX_MIX_OPER_MODULATE;
- alphaArg1 = Gfx::TEX_MIX_ARG_CURRENT;
- alphaArg2 = Gfx::TEX_MIX_ARG_TEXTURE;
-}