Changeset 46966 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/swapchain.c
- Timestamp:
- Jul 4, 2013 6:08:11 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86974
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/swapchain.c
r46757 r46966 307 307 } 308 308 309 VBOXWINEEX_DECL(HRESULT) VBoxWineExD3DSwapchain9GetHostWinID(IDirect3DSwapChain9 *iface, DWORD *pID)310 { 311 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9(iface); 312 HRESULT hr; 313 wined3d_mutex_lock(); 314 hr = wined3d_swapchain_get_host_win_id(swapchain->wined3d_swapchain, p ID);309 VBOXWINEEX_DECL(HRESULT) VBoxWineExD3DSwapchain9GetHostWinID(IDirect3DSwapChain9 *iface, int32_t *pi32Id) 310 { 311 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9(iface); 312 HRESULT hr; 313 wined3d_mutex_lock(); 314 hr = wined3d_swapchain_get_host_win_id(swapchain->wined3d_swapchain, pi32Id); 315 315 wined3d_mutex_unlock(); 316 316 return hr;
Note:
See TracChangeset
for help on using the changeset viewer.