gpt4 book ai didi

directx - 使用 SharpDX 运行 DX11 计算着色器 - 无法获得结果

转载 作者:行者123 更新时间:2023-12-04 14:25:56 29 4
gpt4 key购买 nike

我正在尝试运行计算着色器并使用 SharpDX 获取生成的纹理。

据我了解,我需要:1. 创建纹理以设置为着色器的输出。2. 将上面的纹理设置为无序访问 View ,以便我可以写入它。3.运行着色器4. 将无人机纹理复制到暂存纹理,以便 CPU 可以访问它5. 读取暂存纹理到位图

问题是无论我做什么,结果都是黑色位图。我认为错误不在 Texture2D -> 位图转换代码中,因为直接从暂存中打印第一个像素纹理也给了我 0。

这是我的着色器代码:

RWTexture2D<float4> Output : register(u0);

[numthreads(32, 32, 1)]
void main(uint3 id : SV_DispatchThreadID) {
Output[id.xy] = float4(0, 1.0, 0, 1.0);
}

使用 MS DX11 文档和博客,我拼凑了这段代码来运行纹理:

public class GPUScreenColor {
private int adapterIndex = 0;

private Adapter1 gpu;
private Device device;
private ComputeShader computeShader;

private Texture2D texture;
private Texture2D stagingTexture;
private UnorderedAccessView view;

public GPUScreenColor() {
initializeDirectX();
}

private void initializeDirectX() {
using (var factory = new Factory1()) {
gpu = factory.GetAdapter1(adapterIndex);
}

device = new Device(gpu, DeviceCreationFlags.Debug, FeatureLevel.Level_11_1);

var compilationResult = ShaderBytecode.CompileFromFile("test.hlsl", "main", "cs_5_0", ShaderFlags.Debug);
computeShader = new ComputeShader(device, compilationResult.Bytecode);

texture = new Texture2D(device, new Texture2DDescription() {
BindFlags = BindFlags.UnorderedAccess | BindFlags.ShaderResource,
Format = Format.R8G8B8A8_UNorm,
Width = 1024,
Height = 1024,
OptionFlags = ResourceOptionFlags.None,
MipLevels = 1,
ArraySize = 1,
SampleDescription = { Count = 1, Quality = 0 }
});

UnorderedAccessView view = new UnorderedAccessView(device, texture, new UnorderedAccessViewDescription() {
Format = Format.R8G8B8A8_UNorm,
Dimension = UnorderedAccessViewDimension.Texture2D,
Texture2D = { MipSlice = 0 }
});

stagingTexture = new Texture2D(device, new Texture2DDescription {
CpuAccessFlags = CpuAccessFlags.Read,
BindFlags = BindFlags.None,
Format = Format.R8G8B8A8_UNorm,
Width = 1024,
Height = 1024,
OptionFlags = ResourceOptionFlags.None,
MipLevels = 1,
ArraySize = 1,
SampleDescription = { Count = 1, Quality = 0 },
Usage = ResourceUsage.Staging
});
}

public Bitmap getBitmap() {
device.ImmediateContext.ComputeShader.Set(computeShader);
device.ImmediateContext.ComputeShader.SetUnorderedAccessView(0, view);

device.ImmediateContext.Dispatch(32, 32, 1);
device.ImmediateContext.CopyResource(texture, stagingTexture);
var mapSource = device.ImmediateContext.MapSubresource(stagingTexture, 0, MapMode.Read, MapFlags.None);

Console.WriteLine(Marshal.ReadInt32(IntPtr.Add(mapSource.DataPointer, 0)));

try {
// Copy pixels from screen capture Texture to GDI bitmap
Bitmap bitmap = new Bitmap(1024, 1024, System.Drawing.Imaging.PixelFormat.Format32bppRgb);
BitmapData mapDest = bitmap.LockBits(new Rectangle(0, 0, 1024, 1024), ImageLockMode.ReadWrite, bitmap.PixelFormat);

try {
var sourcePtr = mapSource.DataPointer;
var destPtr = mapDest.Scan0;
for (int y = 0; y < 1024; y++) {
// Copy a single line
Utilities.CopyMemory(destPtr, sourcePtr, 1024 * 4);

// Advance pointers
sourcePtr = IntPtr.Add(sourcePtr, mapSource.RowPitch);
destPtr = IntPtr.Add(destPtr, mapDest.Stride);
}

return bitmap;
} finally {
bitmap.UnlockBits(mapDest);
}
} finally {
device.ImmediateContext.UnmapSubresource(stagingTexture, 0);
}
}
}

我对着色器很陌生,所以这可能是显而易见的......

最佳答案

首先,您将 UAV 创建为本地 :

UnorderedAccessView view = new UnorderedAccessView(....

因此该字段为空,替换为

view = new UnorderedAccessView(....

将解决第一个问题。

其次,运行时很可能会提示类型(调试会给你类似的东西:

在着色器代码 (FLOAT) 中声明的组件 0 的资源返回类型与绑定(bind)到计算着色器单元 (UNORM) 的无序访问 View 插槽 0 的资源类型不兼容。

有些卡可能会做一些事情(默默地修复它),有些可能什么都不做,有些可能会崩溃:)

问题是 RWTexture2D 与 UNORM 格式不匹配(因为您在此处指定了平点格式)。

您需要强制您的 RWTexture 为 unorm 格式,例如(是的,运行时可能很挑剔):

RWTexture2D<unorm float4> Output : register(u0);

那么您的整个设置应该可以正常工作(PS:我没有检查位图代码,但我仔细检查了着色器是否正常运行并且第一个像素匹配)

关于directx - 使用 SharpDX 运行 DX11 计算着色器 - 无法获得结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44345239/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com