Merge pull request #582 from tdev/RenderInstConstructor

RenderInstType default constructor improvements
This commit is contained in:
LuisAntonRebollo 2014-03-16 14:08:39 +01:00
commit e22d8156b4

View file

@ -65,12 +65,17 @@ protected:
public:
RenderInstType( const RenderInstType &type = Invalid )
RenderInstType()
: mName( Invalid.mName )
{
}
RenderInstType( const RenderInstType &type )
: mName( type.mName )
{
}
RenderInstType( const String &name )
RenderInstType( const String &name )
: mName( name )
{
}