reactos/dll/directx/d3d9/d3d9_cursor.c
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00

35 lines
970 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS ReactX
* FILE: dll/directx/d3d9/d3d9_cursor.h
* PURPOSE: d3d9.dll internal cursor methods
* PROGRAMERS: Gregor Gullwi <gbrunmar (dot) ros (at) gmail (dot) com>
*/
#include "d3d9_cursor.h"
#include <debug.h>
#include <d3d9.h>
#include "d3d9_private.h"
#include "adapter.h"
#include "d3d9_device.h"
#include "d3d9_swapchain.h"
#include "d3d9_helpers.h"
D3D9Cursor* CreateD3D9Cursor(struct _Direct3DDevice9_INT* pBaseDevice, struct _Direct3DSwapChain9_INT* pSwapChain)
{
D3D9Cursor* pCursor;
if (FAILED(AlignedAlloc((LPVOID*)&pCursor, sizeof(D3D9Cursor))))
{
DPRINT1("Failed to allocate D3D9Cursor");
return NULL;
}
pCursor->pBaseDevice = pBaseDevice;
pCursor->pSwapChain = pSwapChain;
pCursor->dwWidth = pSwapChain->dwWidth / 2;
pCursor->dwHeight = pSwapChain->dwHeight / 2;
return pCursor;
}