如何使用 directX 11 计算着色器显示某些内容?
我想从我的 directX 11 计算着色器写入纹理。但是我不知道如何将其显示在屏幕上,也不知道应该使用哪种缓冲区来执行此操作。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
欢迎来到 stackoverflow :)
要选择的资源类型是 RWTexture2D因为您可以通过交换链直接在屏幕上打印它。
您可以查看 DirectX SDK OIT 示例:
他们声明了一个 RWTexture2D。它们在
OIT_CS.hlsl
的SortAndRenderCS
函数中访问的frameBuffer。正如你所看到的,它们有
r0
、r1
和r2
uint
值,这些值实际上是 RGBA 颜色(一个字节每个通道),他们使用移位和掩码提取每个通道并将其标准化。当然,如果您已经有
float4
值,则不需要这样做。然后他们做那些 lerps(用于插值)。同样,您不需要这样做。
您感兴趣的是,它们使用数组表示法和坐标的
uint2
来访问frameBuffer
。welcome on stackoverflow :)
The type of resource to choose is
RWTexture2D<float4>
since you can print this directly on screen via a swapchain.You can look at the DirectX SDK OIT sample:
They have declared a
RWTexture2D<float4> frameBuffer
that they access in the functionSortAndRenderCS
ofOIT_CS.hlsl
.As you can see they have
r0
,r1
andr2
uint
values that are actually RGBA colors (a byte for each channel), they extract each channel using shifts and masks and normalized it.You don't need to do that if you have already
float4
values of course.Then they do those lerps (for interpolation). Again you shouldn't need to do that.
What interest you is that they access
frameBuffer
using array notation and anuint2
for coordinates.