Noise/NoiseBase: Replace default_random_engine by mt19937

This commit is contained in:
Lynix 2017-02-07 20:12:31 +01:00
parent 2518a3939f
commit 1a677387d1
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ namespace Nz
static std::array<Vector4f, 2 * 2 * 2 * 2 * 2> s_gradients4;
private:
std::default_random_engine m_randomEngine;
std::mt19937 m_randomEngine;
};
}