Edit

kc3-lang/angle/util/system_utils.h

Branch :

  • Show log

    Commit

  • Author : Corentin Wallez
    Date : 2015-05-25 10:03:35
    Hash : 5c798fe9
    Message : Enable OcclusionQueriesTest on Linux This includes an implementation of a cross platform Sleep function BUG=angleproject:892 Change-Id: I1087a00ab204b37bafc5e95a9766962b194d97ef Reviewed-on: https://chromium-review.googlesource.com/273133 Reviewed-by: Geoff Lang <geofflang@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org> Tested-by: Corentin Wallez <cwallez@chromium.org>

  • util/system_utils.h
  • //
    // 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.
    //
    
    // system_utils.h: declaration of OS-specific utility functions
    
    #ifndef SAMPLE_UTIL_PATH_UTILS_H
    #define SAMPLE_UTIL_PATH_UTILS_H
    
    #include <string>
    
    namespace angle
    {
    
    std::string GetExecutablePath();
    std::string GetExecutableDirectory();
    
    // Cross platform equivalent of the Windows Sleep function
    void Sleep(unsigned int milliseconds);
    
    } // namespace angle
    
    #endif // SAMPLE_UTIL_PATH_UTILS_H