Can I animate render targets or the swap chain?

Posted by Eric F. on Game Development See other posts from Game Development or by Eric F.
Published on 2012-06-07T13:29:02Z Indexed on 2012/06/07 16:48 UTC
Read the original article Hit count: 249

Filed under:
|
|

I want to animate some synthetic video bits to fullscreen w/o tearing. Can I set up D3D 9/10/11 in exclusive mode, and have it present a series of buffers that I'm writing to?

I know how to copy system memory bits into a texture, then draw that texture as a fullscreen quad, but it seems like overkill. Why should I use the triangle rasterizer when I want to do something so simple?

All I want to do is set up a long (4-8 buffer) swapchain and set the bits of the back buffer that is about to be displayed. Or, I want to allocate 4-8 RenderTargets, and on each frame, copy the bits from system memory to the RenderTarget, then set it as the next thing to display. I've never seen or heard about anybody doing this, but it seems so dead simple!

© Game Development or respective owner

Related posts about directx

Related posts about directx11