D3DDDIARG_LOCKASYNC structure (d3dumddi.h)
The D3DDDIARG_LOCKASYNC structure describes a resource or a surface within the resource to lock.
Syntax
typedef struct _D3DDDIARG_LOCKASYNC {
[in] HANDLE hResource;
[in] UINT SubResourceIndex;
[in] D3DDDI_LOCKASYNCFLAGS Flags;
union {
[in] D3DDDIRANGE Range;
[in] RECT Area;
[in] D3DDDIBOX Box;
};
[out] HANDLE hCookie;
[out] VOID *pSurfData;
[out] UINT Pitch;
[out] UINT SlicePitch;
D3DGPU_VIRTUAL_ADDRESS GpuVirtualAddress;
} D3DDDIARG_LOCKASYNC;
Members
[in] hResource
A handle to the resource to be locked.
[in] SubResourceIndex
The zero-based index into the resource that hResource specifies. This index indicates the subresource or surface to be locked.
[in] Flags
A D3DDDI_LOCKASYNCFLAGS structure that indicates, in bit-field flags, how to lock the resource.
[in] Range
A D3DDDIRANGE structure that describes the subrange of the linear resource to lock, if the RangeValid bit-field flag is set in the D3DDDI_LOCKASYNCFLAGS structure that Flags specifies.
[in] Area
A RECT structure that describes the subrectangle of the surface to lock, if the AreaValid bit-field flag is set in the D3DDDI_LOCKASYNCFLAGS structure that Flags specifies.
[in] Box
A D3DDDIBOX structure that describes the subvolume of the volume to lock, if the BoxValid bit-field flag is set in the D3DDDI_LOCKASYNCFLAGS structure that Flags specifies.
[out] hCookie
A handle that represents the renamed resource. This handle is valid only if the Discard bit-field flag is set in the D3DDDI_LOCKASYNCFLAGS structure that Flags specifies.
[out] pSurfData
A pointer to the memory region for the resource that was locked. The user-mode display driver's LockAsync function returns this pointer to the Microsoft Direct3D runtime.
[out] Pitch
The pitch, in bytes, of the surface that was locked. The user-mode display driver's LockAsync function returns this pitch value to the Direct3D runtime.
[out] SlicePitch
The slice pitch, in bytes, of the surface that was locked. The user-mode display driver's LockAsync function returns this slice pitch value to the Direct3D runtime.
GpuVirtualAddress
This member is reserved and should be set to zero.
This member is available beginning with Windows 7.
Remarks
The members of the D3DDDI_LOCKASYNCFLAGS structure that the Flags member specifies must adhere to the following rules:
- The NoOverwrite bit-field flag must not be simultaneously set with the Discard bit-field flag.
- Only one of the RangeValid, AreaValid, and BoxValid bit-field flags must be set at any time.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Available in Windows Vista and later versions of the Windows operating systems. |
Header | d3dumddi.h (include D3dumddi.h) |