mirror of
https://github.com/sal063/AC6_recomp
synced 2026-05-30 17:06:26 -04:00
22 lines
700 B
C++
22 lines
700 B
C++
#pragma once
|
|
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2021 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*
|
|
* @modified Tom Clay, 2026 - Adapted for ReXGlue runtime
|
|
*/
|
|
|
|
#include <cstdint>
|
|
|
|
namespace rex {
|
|
namespace ui {
|
|
|
|
int32_t FloatToD3D11Fixed16p8(float f32);
|
|
|
|
} // namespace ui
|
|
} // namespace rex
|