|
CUresult cuD3D9ResourceSetMapFlags |
( |
IDirect3DResource9 * |
pResource, |
|
|
unsigned int |
Flags | |
|
) |
| | |
- Deprecated:
- This function is deprecated as of Cuda 3.0.
Set Flags for mapping the Direct3D resource pResource .
Changes to Flags will take effect the next time pResource is mapped. The Flags argument may be any of the following:
- CU_D3D9_MAPRESOURCE_FLAGS_NONE: Specifies no hints about how this resource will be used. It is therefore assumed that this resource will be read from and written to by CUDA kernels. This is the default value.
- CU_D3D9_MAPRESOURCE_FLAGS_READONLY: Specifies that CUDA kernels which access this resource will not write to this resource.
- CU_D3D9_MAPRESOURCE_FLAGS_WRITEDISCARD: Specifies that CUDA kernels which access this resource will not read from this resource and will write over the entire contents of the resource, so none of the data previously stored in the resource will be preserved.
If pResource has not been registered for use with CUDA, then CUDA_ERROR_INVALID_HANDLE is returned. If pResource is presently mapped for access by CUDA, then CUDA_ERROR_ALREADY_MAPPED is returned.
- Parameters:
-
| pResource | - Registered resource to set flags for |
| Flags | - Parameters for resource mapping |
- Returns:
- CUDA_SUCCESS, CUDA_ERROR_DEINITIALIZED, CUDA_ERROR_NOT_INITIALIZED, CUDA_ERROR_INVALID_CONTEXT, CUDA_ERROR_INVALID_VALUE, CUDA_ERROR_INVALID_HANDLE, CUDA_ERROR_ALREADY_MAPPED
- Note:
- Note that this function may also return error codes from previous, asynchronous launches.
- See also:
- cuGraphicsResourceSetMapFlags
|