mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
d3d9: Implement FPUSETUP for msvc.
This commit is contained in:
parent
35f2e91fcd
commit
e1d92059ea
2 changed files with 15 additions and 1 deletions
|
@ -3306,6 +3306,11 @@ static void setup_fpu(void)
|
|||
__asm__ volatile ("fnstcw %0" : "=m" (cw));
|
||||
cw = (cw & ~0xf3f) | 0x3f;
|
||||
__asm__ volatile ("fldcw %0" : : "m" (cw));
|
||||
#elif defined(__i386__) && defined(_MSC_VER)
|
||||
WORD cw;
|
||||
__asm fnstcw cw;
|
||||
cw = (cw & ~0xf3f) | 0x3f;
|
||||
__asm fldcw cw;
|
||||
#else
|
||||
FIXME("FPU setup not implemented for this platform.\n");
|
||||
#endif
|
||||
|
|
|
@ -2913,8 +2913,13 @@ cleanup:
|
|||
static inline void set_fpu_cw(WORD cw)
|
||||
{
|
||||
#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|
||||
#define D3D9_TEST_SET_FPU_CW 1
|
||||
__asm__ volatile ("fnclex");
|
||||
__asm__ volatile ("fldcw %0" : : "m" (cw));
|
||||
#elif defined(__i386__) && defined(_MSC_VER)
|
||||
#define D3D9_TEST_SET_FPU_CW 1
|
||||
__asm fnclex;
|
||||
__asm fldcw cw;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -2922,14 +2927,18 @@ static inline WORD get_fpu_cw(void)
|
|||
{
|
||||
WORD cw = 0;
|
||||
#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|
||||
#define D3D9_TEST_GET_FPU_CW 1
|
||||
__asm__ volatile ("fnstcw %0" : "=m" (cw));
|
||||
#elif defined(__i386__) && defined(_MSC_VER)
|
||||
#define D3D9_TEST_GET_FPU_CW 1
|
||||
__asm fnstcw cw;
|
||||
#endif
|
||||
return cw;
|
||||
}
|
||||
|
||||
static void test_fpu_setup(void)
|
||||
{
|
||||
#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|
||||
#if defined(D3D9_TEST_SET_FPU_CW) && defined(D3D9_TEST_GET_FPU_CW)
|
||||
D3DPRESENT_PARAMETERS present_parameters;
|
||||
IDirect3DDevice9 *device;
|
||||
HWND window = NULL;
|
||||
|
|
Loading…
Reference in a new issue