mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
0888c93d48
Makes these utilities' namespace consistent with the majority of the Common library.
24 lines
379 B
C++
24 lines
379 B
C++
// Copyright 2003 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "Common/FPURoundMode.h"
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
// Generic, do nothing
|
|
namespace Common::FPU
|
|
{
|
|
void SetSIMDMode(RoundMode rounding_mode, bool non_ieee_mode)
|
|
{
|
|
}
|
|
void SaveSIMDState()
|
|
{
|
|
}
|
|
void LoadSIMDState()
|
|
{
|
|
}
|
|
void LoadDefaultSIMDState()
|
|
{
|
|
}
|
|
} // namespace Common::FPU
|