.. | ||
data | ||
doc | ||
Makefile | ||
README.md | ||
simpleD3D9Texture_vs2017.sln | ||
simpleD3D9Texture_vs2017.vcxproj | ||
simpleD3D9Texture_vs2019.sln | ||
simpleD3D9Texture_vs2019.vcxproj | ||
simpleD3D9Texture_vs2022.sln | ||
simpleD3D9Texture_vs2022.vcxproj | ||
simpleD3D9Texture.cpp | ||
texture_2d.cu | ||
texture_cube.cu | ||
texture_volume.cu |
simpleD3D9Texture - Simple D3D9 Texture
Description
Simple program which demonstrates Direct3D9 Texture interoperability with CUDA. The program creates a number of D3D9 Textures (2D, 3D, and CubeMap) which are written to from CUDA kernels. Direct3D then renders the results on the screen. A Direct3D capable device is required.
Key Concepts
Graphics Interop, Texture
Supported SM Architectures
SM 3.5 SM 3.7 SM 5.0 SM 5.2 SM 5.3 SM 6.0 SM 6.1 SM 7.0 SM 7.2 SM 7.5 SM 8.0 SM 8.6 SM 8.7 SM 9.0
Supported OSes
Windows
Supported CPU Architecture
x86_64
CUDA APIs involved
CUDA Runtime API
cudaGraphicsUnmapResources, cudaMalloc, cudaMallocPitch, cudaFree, cudaGetLastError, cudaGraphicsMapResources, cudaMemset, cudaGraphicsUnregisterResource, cudaGraphicsSubResourceGetMappedArray
Dependencies needed to build/run
Prerequisites
Download and install the CUDA Toolkit 11.8 for your corresponding platform. Make sure the dependencies mentioned in Dependencies section above are installed.
Build and Run
Windows
The Windows samples are built using the Visual Studio IDE. Solution files (.sln) are provided for each supported version of Visual Studio, using the format:
*_vs<version>.sln - for Visual Studio <version>
Each individual sample has its own set of solution files in its directory:
To build/examine all the samples at once, the complete solution files should be used. To build/examine a single sample, the individual sample solution files should be used.
Note: Some samples require that the Microsoft DirectX SDK (June 2010 or newer) be installed and that the VC++ directory paths are properly set up (Tools > Options...). Check DirectX Dependencies section for details."