Edit

kc3-lang/angle/util/random_utils.cpp

Branch :

  • Show log

    Commit

  • Author : Minmin Gong
    Date : 2015-04-07 18:31:54
    Hash : 794e0009
    Message : Fix and enable warning C4244 (Conversion from 'type1' to 'type2', possible loss of data) Change-Id: Id0e06d7d6600344d858f00dabc219d79289bbc82 Reviewed-on: https://chromium-review.googlesource.com/265020 Tested-by: Minmin Gong <mgong@microsoft.com> Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Geoff Lang <geofflang@chromium.org>

  • util/random_utils.cpp
  • //
    // Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    
    #include "random_utils.h"
    #include <time.h>
    #include <cstdlib>
    
    float RandomBetween(float min, float max)
    {
        static bool randInitialized = false;
        if (!randInitialized)
        {
            srand(static_cast<unsigned int>(time(NULL)));
            randInitialized = true;
        }
    
        const size_t divisor = 10000;
        return min + ((rand() % divisor) / static_cast<float>(divisor)) * (max - min);
    }