The rendertarget tag has no wiki summary.
1
vote
2answers
33 views
Direct3D: Output 4 color channels and a separate alpha?
Something I'm wondering about, that's probably not possible unfortunately, but thought I'd ask - I'm setting up a deferred lighting shader that takes in 2 textures and outputs to 2 render targets. ...
1
vote
1answer
66 views
XNA Scale and Render Targets
I'm working on a top down Strategy/RPG/Tower Defense XNA Game for Windows, and I'm running into an issue while scaling.
My display mode is 1680 X 1050, and that is what I'm setting the ...
0
votes
1answer
21 views
RenderTarget content changes when game is minimized
So I'm working on a GUI library for XNA and I've come across an issue I can't find a solution to. I'm working with rendertargets a lot, which is annoying in itself, but I have a really weird and ...
0
votes
1answer
31 views
How do I resolve this argument error for RenderTarget2D?
I'm working with a bit of XNA code, as a beginner. So i use this tutorial, but it appears that i am doing something and i do not know why.
...
0
votes
0answers
85 views
Why multiple Render Target Views for the same texture?
I am new to graphics programming. I was going through one of the DX application. I do see same texture being used as Render Target. I can under-stand that logic if they are to be used in the same draw ...
2
votes
1answer
120 views
Where to call SetRenderTarget?
I'd like to change my RenderTargets between SpriteBatch.Begin and SpriteBatch.End. I already know this works:
GraphicsDevice.SetRenderTarget(target1);
SpriteBatch.Begin()
SpriteBatch.Draw(...)
...
0
votes
1answer
122 views
XNA RenderTarget2D in Windows Phone
I would like to use a RenderTarget2D in my Windows Phone 7 XNA application. However, I am unsuccessful because switching drawing to my render target and then switching back (via using ...
0
votes
1answer
174 views
Load texture resized in XNA
I'm developing for Windows Phone XNA and would like to load textures with a smaller size to decrease memory impact where the full image isn't required.
My current solution is to use a rendertarget to ...
0
votes
1answer
74 views
Scaling RenderTarget2D doesn't scale SourceRectangles
I develop a 2D match3 game in XNA. The core logic and animations are done. I use RenderTarget2D to draw the entire board. The board has 8 rows and 8 columns with 64x64 textures (the tiles), which ...
2
votes
0answers
312 views
DX11 Alpha blending when rendering to a texture
FINAL EDIT:
Resolved... just needed to learn how alpha blending works in-depth. I should have had:
oBlendStateDesc.RenderTarget[a].DestBlendAlpha = D3D11_BLEND_ZERO;
...set to D3D11_BLEND_ONE to ...
1
vote
1answer
229 views
How Can I Render To One Face Of An OpenGL Cubemap texture
I'm making a Cube map render target class.
I already have a 2D one that works fine. But for this cube map render target class I want to be able to render to a specific face as i wish. Maybe I want to ...
1
vote
1answer
65 views
Dynamically resize texture on the fly
I'm using RenderTarget2D to draw my map to before rendering it to the screen as it changes very rarely and the map itself is made up of a LOT of very small tiles. So rather than drawing all tiles to ...
0
votes
1answer
123 views
ID2D1DCRenderTarget vs ID2D1HwndRenderTarget
I'm trying to port some GDI/GDI+ code to Direct2D, but I'm still a little confused about which type of target is better to use (DC or Hwnd), because I found different performance depending on whether ...
1
vote
1answer
401 views
RenderTargetView to ShaderResourceView
I come from XNA, where I could easily create a rendertarget and use it as a simple "Texture2D".
I created a ID3D11RenderTargetView object and a ID3D11ShaderResourceView object. I draw my sprites to my ...
2
votes
0answers
105 views
particlesystem issue in newer versions
Edit 2:
It seems they are rendered somehow, but from a version to another their dimension, and scale differ. I managed somehow to see them in three52, moving the camere very close to 0,0,0 and they ...
0
votes
1answer
149 views
what is the difference between getBuffer() and CreateRenderTargetView in directx 11?
I am new to DirectX11 and learning it. (I come from openGL background).
I am confused and trying to understand what exactly does the following API calls do and what is the difference between them:
...
1
vote
1answer
291 views
xna 4.0 sprite + MRT + pixelshader
I'm trying to combine 2 rendertargets, color and normal, for diffuse lightning and to render the result on screen. The idea is to use a sprite with an effect containing only a pixelshader to combine ...
0
votes
1answer
327 views
OMSETRENDERTARGETS_INVALIDVIEW on switching RenderTargets (DirectX)
i was trying to render to a texture to use it for post-processing. I've read a lot of tutorials about this stuff und have tried it for myself now, but apparently i am doing something wrong. I already ...
0
votes
2answers
106 views
Storing render from RenderTarget2D to Color Array Error
So I am trying to store the result from a render target into an array of Colors so I can manipulate them individually with an iterator. For some reason, the below code sets every value in the array to ...
0
votes
1answer
172 views
DirectX 11 in only part of screen?
I'm trying to set up a window where Direct X only participates in half of the screen.
My swap chain desc width is half screen, and my viewport width is half screen, but when I clear the render ...
1
vote
2answers
967 views
C# XNA: RenderTarget2D tints all alpha purple
So, I'm trying to render my gameplay to a RenderTarget2D in XNA so I can apply shaders to the scene. It's working, to some extent, but anything that has was drawn with an alpha level other than 255 ...
0
votes
1answer
571 views
C#/XNA - RenderTarget2D.GetData(), RenderTarget2D.SetData(): is it efficient for cloning textures per frame?
So, since the last question, I found that my solution is to duplicate the texture to prevent reference issues. However, I'm questioning:
Color[] color = new Color[screen.Width * screen.Height];
...
0
votes
1answer
2k views
C# XNA renderTarget2D .Clear(Color.Transparent) not working
All I want is to clear my renderTarget2D once so that it starts off compeltely transparent, and then preserve it's contents between frames.
I draw the renderTarget texture after I draw the background ...
0
votes
1answer
367 views
Using the depth buffer for floating point rendertargets in OpenGL 2.1
I would like to use the depth buffer to store the depth values of particles in eye space in a 2D texture by using OpenGL 2.1 / GLSL 1.2.
So far I found a way to use the colorbuffer
// create ...
0
votes
1answer
192 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
285 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 ...
2
votes
2answers
585 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?
2
votes
2answers
1k 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
215 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, ...
3
votes
2answers
3k 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, ...
1
vote
3answers
1k 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 ...