Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
1k views

Direct3D: efficient way to get system memory bitmap from IDirect3DSurface9 (default pool)?

I have IDirect3DSurface9, default pool, YUV format. How can I efficiently get bitmap bits from it? At the moment I: create render target: device->CreateRenderTarget(surf_desc.Width, surf_desc.Height, ...
2
votes
2answers
238 views

Point to Multiple Render Targets

Is there any point in using multiple render targets? Couldn't one just draw to one render target and store that in a texture before clearing the target and using it again?
0
votes
1answer
42 views

Is it possible to make an XNA RenderTarget2D target a System.Drawing.Image?

Basically, I am working on a C# WinForms Application and I want to have an XNA 3.1 game draw to an image, whether that be the device's primary backbuffer or a render target I have to set. Is this ...
0
votes
1answer
45 views

How to Not refresh the rendertarget after each frame in XNA

Take for example I draw a circle at (10,10) then on the next frame another at (20,20). the circle at (10,10) is no longer visible. I am not calling graphicsdevice.clear. is there a way to make the ...
0
votes
0answers
52 views

Texture format VS Render Target format

I have one question regarding to the texture format and render target format. I would like to create a texture resource to save the back buffer of the render target to this texture. Is it necessary ...
0
votes
0answers
94 views

Downsampling is not working

Hey guys, I was having trouble downsampling a texture for post processing effect, apparently the downsampled texture is not getting any output(checked form PIX). The code is just basic 4x4 ...
0
votes
2answers
563 views

GDI rendering to direct2D ID2D1BitmapRenderTarget is always transparent

I want to port my movie rendering software from DirectDraw to Direct2D. Because of compatibility issues, GDI rendering needs to be done on top of the image. To optimize performance I want to implement ...
0
votes
1answer
124 views

How can I create a random number of D2D shapes (rectangles and ellipses) and refer to them as an array while drawing?

Let me elaborate. I define a D2D Rectangle like so: D2D1_RECT_F rect1 = D2D1::RectF(5, 0, 150, 150); and an ellipse as: D2D1_ELLIPSE ellipse1 = D2D1::Ellipse(D2D1::Point2F(75.f, 75.f), 75.f, ...
0
votes
2answers
474 views

Changing RenderTarget Results in Purple Screen?

I'm attempting to change RenderTargets at runtime, so I can draw some elements at runtime, manipulate them and then finally draw the texture to the screen. Problem is, the screen turns purple if I ...