Convert Render Target texture to a standard texture DX9

Started by
0 comments, last by MJP 16 years, 1 month ago
Hi. On some graphics cards, people are limited by how many render targets they are able to have. In my game, there are some render targets which are only affected once and for the rest of the game they are used like normal textures. I was wondering, is it possible to convert a render target texture into a texture. At the moment I save it to a file in memory, and load that file in memory into direct x....but its a slow process as its going GPU to CPU to GPU.
Advertisement
Just create a standard texture with same dimensions and format, then use StretchRect to copy over the data.

This topic is closed to new replies.

Advertisement