Microsoft DirectX 8.0 (C++) |
Sets the cursor position and update options.
void SetCursorPosition( UINT XScreenSpace, UINT YScreenSpace, DWORD Flags );
If this flag is specified, the system guarantees that the cursor will be updated at a minimum of half the display refresh rate, but never more frequently than the display refresh rate. Otherwise, the method delays cursor updates until the next IDirect3DDevice8::Present call. This default behavior usually results in better performance than if the flag had been set. However, applications should set this flag if the rate of calls to Present is high enough that users would notice a significant delay in cursor motion.
None.
When running in full-screen mode, screen-space coordinates are the back-buffer coordinates appropriately scaled to the current display mode. When running in windowed mode, screen-space coordinates are the desktop coordinates. The cursor image is drawn at the specified position minus the hotspot offset specified by the IDirect3DDevice8::SetCursorProperties method.
If the cursor has been hidden by IDirect3DDevice8::ShowCursor, then the cursor is not drawn.
Header: Declared in D3d8.h.
Import Library: Use D3d8.lib.
IDirect3DDevice8::SetCursorProperties, IDirect3DDevice8::ShowCursor