diff options
author | Aaron Suen <warr1024@gmail.com> | 2015-03-30 20:04:19 -0400 |
---|---|---|
committer | Craig Robbins <kde.psych@gmail.com> | 2015-03-31 16:56:33 +1000 |
commit | db32e6c5aa3bf79c23fa51f9297440fcaf09215d (patch) | |
tree | 7d840ddc94da602c8fda5009feedbec06f91ac1a /src/content_cso.cpp | |
parent | 862d4ea328ed30d79f4e28eb9119e21e275295d9 (diff) | |
download | minetest-db32e6c5aa3bf79c23fa51f9297440fcaf09215d.tar.gz minetest-db32e6c5aa3bf79c23fa51f9297440fcaf09215d.tar.bz2 minetest-db32e6c5aa3bf79c23fa51f9297440fcaf09215d.zip |
Move texture_min_size even further down the pipe. Now, textures are JIT-upscaled using an image transformation, right at the time they're added to a mesh or particle; images used in 2D elements are left unscaled. This should fix any remaining issues with HUD elements.
Diffstat (limited to 'src/content_cso.cpp')
-rw-r--r-- | src/content_cso.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content_cso.cpp b/src/content_cso.cpp index c337472ff..0790024fc 100644 --- a/src/content_cso.cpp +++ b/src/content_cso.cpp @@ -50,7 +50,7 @@ public: m_spritenode = smgr->addBillboardSceneNode( NULL, v2f(1,1), pos, -1); m_spritenode->setMaterialTexture(0, - env->getGameDef()->tsrc()->getTexture("smoke_puff.png")); + env->getGameDef()->tsrc()->getTextureForMesh("smoke_puff.png")); m_spritenode->setMaterialFlag(video::EMF_LIGHTING, false); m_spritenode->setMaterialFlag(video::EMF_BILINEAR_FILTER, false); //m_spritenode->setMaterialType(video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF); |