Beispiel #1
0
//------------------------------------------------------------------------------
//!
void
ConstantBuffer::setConstant( const ConstString& name, const void* value )
{
   const Constant* constant = getConstant( name );
   if( constant != NULL )
   {
      setConstant( constant, value );
   }
   else
   {
      StdErr << "ERROR - Constant '" << name.cstr() << "' not found." << nl;
   }
}