summaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/nine/swapchain9ex.h
diff options
context:
space:
mode:
authorAxel Davy <axel.davy@ens.fr>2016-02-07 12:29:45 +0100
committerAxel Davy <axel.davy@ens.fr>2016-02-12 23:26:36 +0100
commit77d6c11f8fa87ba1070028cb036807dc8a115633 (patch)
treee1b16872220df1c94b7dbc2d790d374e386e13a7 /src/gallium/state_trackers/nine/swapchain9ex.h
parentd7a5468da9796af193e65cd5823525b97dfed2df (diff)
downloadexternal_mesa3d-77d6c11f8fa87ba1070028cb036807dc8a115633.zip
external_mesa3d-77d6c11f8fa87ba1070028cb036807dc8a115633.tar.gz
external_mesa3d-77d6c11f8fa87ba1070028cb036807dc8a115633.tar.bz2
st/nine: Align stack for entry points
For 32 bits, incoming stack is 4-byte aligned. We need to realign the stack to 16-byte at some point, or there are issues later (crash with SSE, llvm, etc). This patch chooses to align the stack at API entry points. Signed-off-by: Axel Davy <axel.davy@ens.fr>
Diffstat (limited to 'src/gallium/state_trackers/nine/swapchain9ex.h')
-rw-r--r--src/gallium/state_trackers/nine/swapchain9ex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/state_trackers/nine/swapchain9ex.h b/src/gallium/state_trackers/nine/swapchain9ex.h
index 075f883..a15d9d2 100644
--- a/src/gallium/state_trackers/nine/swapchain9ex.h
+++ b/src/gallium/state_trackers/nine/swapchain9ex.h
@@ -45,15 +45,15 @@ NineSwapChain9Ex_new( struct NineDevice9 *pDevice,
D3DDISPLAYMODEEX *mode,
struct NineSwapChain9Ex **ppOut );
-HRESULT WINAPI
+HRESULT NINE_WINAPI
NineSwapChain9Ex_GetLastPresentCount( struct NineSwapChain9Ex *This,
UINT *pLastPresentCount );
-HRESULT WINAPI
+HRESULT NINE_WINAPI
NineSwapChain9Ex_GetPresentStats( struct NineSwapChain9Ex *This,
D3DPRESENTSTATS *pPresentationStatistics );
-HRESULT WINAPI
+HRESULT NINE_WINAPI
NineSwapChain9Ex_GetDisplayModeEx( struct NineSwapChain9Ex *This,
D3DDISPLAYMODEEX *pMode,
D3DDISPLAYROTATION *pRotation );