// // 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 #include 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