PFND3DDDI_CREATERESOURCE2 callback function (d3dumddi.h)

Creates a resource. Implemented by Windows Display Driver Model (WDDM) 1.2 and later user-mode display drivers.

Syntax

PFND3DDDI_CREATERESOURCE2 Pfnd3dddiCreateresource2;

HRESULT Pfnd3dddiCreateresource2(
  [in] HANDLE hDevice,
       D3DDDIARG_CREATERESOURCE2 *unnamedParam2
)
{...}

Parameters

[in] hDevice

A handle to the display device (graphics context) that is used to create the resource.

unnamedParam2

pResource2 [in, out]

A pointer to a D3DDDIARG_CREATERESOURCE2 structure that describes the resource that is created.

Return value

Returns S_OK or an appropriate error result. WDDM 1.3 and later Direct3D Level 9 drivers must return this error code:

Return code Description
E_INVALIDARG The D3DDDIARG_CREATERESOURCE2 .Flagsmember has the CaptureBuffer flag value set and the resource exceeds what the driver can support.

Remarks

The call to CreateResource2 can contain a list of surfaces. The SurfCount member of the D3DDDIARG_CREATERESOURCE2 structure that is specified by the pResource2 parameter specifies the number of surfaces—including MIP-map levels—to create. For example, a 256x256x9 texture MIP-map resource contains a list of nine surfaces where the SurfCount member and number of MIP-map levels are both set to 9. A cube map that contains nine MIP-map levels should have the number of MIP-map levels set to 9 and SurfCount set to 54. A three-surface swap chain should have SurfCount set to 3 and the number of MIP-map levels set to 0. Note that the number of MIP-map levels is always less than or equal to the value in SurfCount.

In response to the CreateResource2 call, the user-mode display driver can call the pfnAllocateCb function to create one or more memory allocations. The user-mode display driver must determine whether it must create multiple allocations per surface, one allocation for all surfaces, or one allocation per surface. For more information about allocations, see Video Memory Management and GPU Scheduling.

Note   The driver's CreateResource2 function is not required to call pfnAllocateCb before returning; instead, the driver can defer allocation creation.
 
Note   A resource can be shared only if all of the allocations for the resource are made atomically in a single call to pfnAllocateCb.
 
The hResource member in the D3DDDIARG_CREATERESOURCE2 structure is a handle that's used to identify the resource. The user-mode display driver should store the value of hResource that was passed in the CreateResource2 call and overwrite the value with another value that the Microsoft Direct3D runtime can use when the CreateResource2 call returns. In other words, in calls to the runtime, the user-mode display driver uses the hResource value that was passed to CreateResource2; in calls to the user-mode display driver (for example, in calls to the SetTexture or SetStreamSource functions), the runtime uses the hResource value that was returned from CreateResource2. Note that each surface does not have an explicit handle; if the surface must be referred to individually (for example in a call to the Blt function), it is referred to by a handle and an index. The index identifies the surface within the resource. The index is the same as the index of the surface in the array that is contained in the pSurfList member of D3DDDIARG_CREATERESOURCE2.

Resources can be shared by multiple devices (hDevice) and processes. The runtime specifies that a resource is shared by setting the SharedResource bit-field flag in the Flags member of D3DDDIARG_CREATERESOURCE2. If this bit-field flag is set, the user-mode display driver must adhere to the following restrictions on shared resources:

  • The user-mode display driver can call the pfnAllocateCb and pfnDeallocateCb functions exactly once each.
  • The user-mode display driver cannot create additional allocations for the resource after the resource is initially created and likewise can destroy the resource allocations only at the time that the resource itself is destroyed.
  • When the user-mode display driver's DestroyResource function is called for a shared resource that was created or opened through a call to the driver's CreateResource2 or OpenResource function, the driver must set the hResource member of the D3DDDICB_DEALLOCATE structure to non-NULL and the NumAllocations member of D3DDDICB_DEALLOCATE to zero in a call to the pfnDeallocateCb function to destroy or close the resource. That is, allocations that are associated with a shared resource cannot be destroyed or closed individually; the resource must be destroyed or closed atomically in one call to pfnDeallocateCb.
  • The number of allocations must be consistent for the resource type (that is, another process that is creating the same resource type should generate the same number and type of allocations). Furthermore, renaming is not allowed for these resources.
The bit-field flags that are specified in the D3DDDI_RESOURCEFLAGS2 structure are passed in the Flags member of D3DDDIARG_CREATERESOURCE2.
Note   A resource can be created without specifying any flags. Surfaces that are associated with such a resource can potentially be locked and can be a source or destination in a bit-block transfer (bitblt) operation. However, such surfaces cannot be used for anything else.
 
Note   Plain surfaces are differentiated from textures or stand-alone render targets by the absence of the Texture or Primary bit-field flag. For example, the presence of the Primary bit-field flag indicates a stand-alone render target and the absence of this flag indicates a render target that is a back buffer.
 
Note   To ensure that changes to the runtime do not break existing drivers, the drivers must not use the following reserved members of the D3DDDIARG_CREATERESOURCE2 structure in calls to their CreateResource2 function to affect the behavior of the drivers:
  • The undefined bits of the Flags member are reserved.
  • If the Primary bit-field flag is not set in Flags, the RefreshRate and Output members are reserved.
  • If the RenderTarget, DecodeRenderTarget, or VideoProcessRenderTarget bit-field flag is not set in Flags, the MultisampleType and MultisampleQuality members are reserved.
  • If the VertexBuffer bit-field flag is not set in Flags, the Fvf member is reserved.
  • If the Texture, CubeMap, and Volume bit-field flags are not set in Flags, the MipLevels member is reserved.
 
For more information about creating and destroying resources, see Handling Resource Creation and Destruction.

For a system memory resource, the display miniport driver can chose to wrap an allocation around the system memory if the system memory is properly aligned for direct access by the graphics processing unit (GPU). The display miniport driver wraps an allocation around the system memory by setting the ExistingSysMem flag in the Flags member of the DXGK_ALLOCATIONINFO structure when creating the allocation by using its DxgkDdiCreateAllocation function. If the display miniport driver cannot wrap an allocation around the system memory or the wrapping fails, the driver should still succeed the creation of the resource and use the CPU to access the resource.

If the runtime requests to create a vertex or index buffer and if the user-mode display driver cannot create the buffer for reasons other than out of memory (for example, a lack of hardware support), the driver must fail with D3DERR_NOTAVAILABLE.

Requirements

Requirement Value
Minimum supported client Windows 8
Minimum supported server Windows Server 2012
Target Platform Desktop
Header d3dumddi.h (include D3dumddi.h)

See also

Blt

D3DDDIARG_CREATERESOURCE2

D3DDDI_RESOURCEFLAGS2

DXGK_ALLOCATIONINFO

DxgkDdiCreateAllocation

SetStreamSource

SetTexture

pfnAllocateCb

pfnDeallocateCb