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.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/graphics/common/device.cpp b/src/graphics/common/device.cpp
index bb51699..79102b2 100644
--- a/src/graphics/common/device.cpp
+++ b/src/graphics/common/device.cpp
@@ -32,14 +32,20 @@ void Gfx::DeviceConfig::LoadDefault()
noFrame = false;
}
-void Gfx::TextureParams::LoadDefault()
+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;