Tagged Questions
The compute-shader tag has no wiki summary.
4
votes
1answer
379 views
DirectX11: Pass data from ComputeShader to VertexShader?
Is it possible to apply a filter to the geometry data that is to be rendered using Compute Shader and then use the result as an input buffer in the Vertex Shader? That would save me the trouble ...
2
votes
2answers
748 views
How to debug DirectX 11 Compute Shaders?
I've started using DirectX 11 Compute Shader technology for GP-GPU programming. I had written quite a complex program on HLSL and when I wanted to debug it, I realized that PIX utility from DX SDK ...
1
vote
1answer
341 views
How do you display something using directX 11 compute shader?
I am wanting to write to a texture from my directX 11 compute shader. However I have no idea how to display this onto the screen nor am I sure what sort of buffer I should be using to do this.
1
vote
5answers
551 views
DirectX 11 Compute Shader - not writing all values
I am trying some experiments in fractal rendering with DirectX11 Compute Shaders.
The provided example runs on a FeatureLevel_10 device.
My RwStructured output buffer has a data format of ...
0
votes
0answers
8 views
Accessing semantics in user functions in HLSL
I am encountering an issue compiling the below compute shader in CS 4.0 without optimizations (/Od in fxc.exe). The reason is:
error X3668: stores to group shared memory for cs_4_0 targets must be ...
0
votes
1answer
153 views
Speed of ComputeShader vs. PixelShader
I've got a question regarding ComputeShader compared to PixelShader.
I want to do some processing on a buffer, and this is possible both with a pixel shader and a compute shader, and now I wonder if ...
0
votes
5answers
471 views
double division by using two floats?
I would like to do a double devision using two floats (It appears that Direct Compute does not support double devision).
Is that possible?
This is what I tried so far (c# code, should be HLSL ...
0
votes
1answer
291 views
Compute Shader analysis support in PIX from DX SDK February 2010
DirectX SDK Febuary 2010 download page has information about new features, including improvements in PIX with support of compute shaders analysis:
PIX has much-improved support for
analysis of ...