mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
Slight optimization by avoiding an unnecessary initialization #654
This commit is contained in:
parent
759a1d8ef2
commit
27f8e5b0a1
@ -16,7 +16,7 @@ namespace glm
|
||||
template <length_t C, length_t R, typename T, precision P, template<length_t, length_t, typename, precision> class matType>
|
||||
GLM_FUNC_QUALIFIER matType<C, R, T, P> fliplr(matType<C, R, T, P> const& in)
|
||||
{
|
||||
matType<C, R, T, P> out;
|
||||
matType<C, R, T, P> out(uninitialize);
|
||||
for (length_t i = 0; i < C; i++)
|
||||
{
|
||||
out[i] = in[(C - i) - 1];
|
||||
|
Loading…
Reference in New Issue
Block a user