Tagged Questions
2
votes
1answer
244 views
Mapping dynamic texture causing “Already Mapped Error”
I just starting using Direct3D11 and I am trying to create a dynamic texture that I plan to update with new data several times a second. My issue is that every time I update the texture with the new ...
1
vote
1answer
348 views
XNA: Getting a struct as a texture to the GPU
I use XNA as a nice easy basis for some graphics processing I'm doing on the CPU, because it already provides a lot of the things I need. Currently, my "rendertarget" is an array of a custom Color ...
0
votes
1answer
101 views
View GPU Memory / View Texture2D memory space for debugging
I've got a question about a PixelShader I am trying to implement, and what I currently do (this is just for debugging, and trying to figure stuff out):
int3 loc;
loc.x = (int)(In.TextureUV.x ...