我尝试通过复制本视频中的示例来编译计算着色器。
https://channel9.msdn.com/Blogs/gclassy/DirectCompute-Lecture-Series-120-Basics-of-DirectCompute-Application-Development
编译时收到以下错误消息:
Error X3666 cs_4_0 does not support typed UAVs
这个错误是从哪里来的?配置是cs_5_0(在VS2019的代码中)。下面是代码的编译部分。
HRESULT DirectCompute::CreateShaders()
{
HRESULT hr = S_OK;
ID3DBlob* CS, * csError;
hr = D3DCompileFromFile(L"ComputeShader.hlsl", NULL, NULL, "main", "cs_5_0", NULL, NULL,
&CS, &csError);
if (csError) {
MessageBox(NULL, L"Failed compiling computer shader", L"Error", MB_OK);
csError->Release();
}
hr = device->CreateComputeShader(
CS->GetBufferPointer(),
CS->GetBufferSize(),
NULL,
pComputeShader.GetAddressOf());
context->CSSetShader(pComputeShader.Get(), NULL, 0);
context->CSSetConstantBuffers(0, 1, pConstantBuffer.GetAddressOf());
ID3D11ShaderResourceView* aSRViews[2] = { pBufferA_SRV.Get(), pBufferB_SRV.Get() };
context->CSSetShaderResources(0, 2, aSRViews);
ID3D11UnorderedAccessView* aUAViews[1] = { pBufferOut_UAV.Get() };
context->CSSetUnorderedAccessViews(0, 1, aUAViews, NULL);
context->Dispatch(matB_width, matA_height, 1);
ID3D11ShaderResourceView* aSRViewsNULL[1] = { NULL };
context->CSSetShaderResources(0, 1, aSRViewsNULL);
ID3D11UnorderedAccessView* aUAViewsNULL[1] = { NULL };
context->CSSetUnorderedAccessViews(0, 1, aUAViewsNULL, NULL);
return hr;
}
如果移除着色器中的RWBuffer引用,则不会出现错误。
cbuffer SampleCB: register(b0)
{
uint WidthA;
uint HeightA;
uint WidthB;
uint HeightB;
uint WidthOut;
uint HeightOut;
};
struct SimpleBufType
{
float val;
};
StructuredBuffer<SimpleBufType> MatrixA : register(t0);
Buffer<float> MatrixB: register(t1);
RWBuffer<float> Output : register(u0); //compiles if this is removed (as well as the output below)
[numthreads(1, 1, 1)]
void main( uint3 DTid : SV_DispatchThreadID )
{
if (DTid.x < WidthB && DTid.y < HeightA)
{
float sum = 0;
for (uint i = 0; i != WidthA; i++)
{
uint addrA = DTid.y * WidthA + i;
uint addrB = DTid.x + i * WidthB;
sum += MatrixA[addrA].val * MatrixB[addrB];
}
Output[DTid.y * WidthOut + DTid.x] = sum;
}
}
Visual Studio配置正确,我相信,我可以在另一个程序中使用着色器5.0。
你知道是什么导致了这个错误吗?如何确保ComputeShader被定义为一个cs_5_0着色器?
2条答案
按热度按时间3z6pesqy1#
已将
RWBuffer
切换为RWStructuredBuffer
,并且可以正常工作仍在查找有关错误消息的指示以及导致RWBuffer出现问题的原因。
xwbd5t1u2#
如果你右键点击一个着色器并进入属性,你可以为那个着色器设置着色器版本。我刚刚遇到了同样的问题。我的计算着色器被设置为版本4,我把它切换到版本5,所有的东西都被编译了。我不知道为什么它不使用VS配置。