blob: 8513bacd9156e1b50e9222f0f7ac5ad6fb29a4d9 [file] [log] [blame]
//
// Copyright (c) 2015 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.
//
// WinRT_system_utils.cpp: Implementation of OS-specific functions for WinRT (Windows)
#include "system_utils.h"
#include <windows.h>
#include <array>
namespace angle
{
void SetLowPriorityProcess()
{
// No equivalent to this in WinRT
}
Library *loadLibrary(const std::string &libraryName)
{
// WinRT cannot load code dynamically.
return nullptr;
}
} // namespace angle