mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-20 15:13:45 +00:00
Merge pull request #1461 from Azaezel/alpha41/CreateCompositeCleanups
cleanup strays
This commit is contained in:
commit
2a9aa3a9d5
3 changed files with 2 additions and 4 deletions
|
|
@ -80,9 +80,7 @@ bool GFXTexHandle::set(const String &texNameR, const String &texNameG, const Str
|
|||
// Clear the existing texture first, so that
|
||||
// its memory is free for the new allocation.
|
||||
free();
|
||||
|
||||
// Create and set the new texture.
|
||||
AssertFatal( texNameR.isNotEmpty(), "Texture name is empty" );
|
||||
|
||||
StrongObjectRef::set( TEXMGR->createCompositeTexture( texNameR, texNameG, texNameB, texNameA, inputKey, profile ) );
|
||||
|
||||
#ifdef TORQUE_DEBUG
|
||||
|
|
|
|||
|
|
@ -172,6 +172,7 @@ bool ProcessedMaterial::stepInstance()
|
|||
|
||||
String ProcessedMaterial::_getTexturePath(const String& filename)
|
||||
{
|
||||
if (filename.isEmpty()) return filename;
|
||||
// if '/', then path is specified, use it.
|
||||
if( filename.find('/') != String::NPos )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue