我目前正在学习Vulkan API,是时候创建管道了,我选择了HLSL,因为将来我想在DirectX中重用着色器,当我获得RTX GPU时,我打算带来光线跟踪,这是HLSL中的新手,编写了一个简单的顶点着色器:

float4 main(float2 pos : POSITIONT) : SV_POSITION
{
    return float4(pos, 0, 1);
}

以下this tutorial我尝试编译:glslc.exe VertexShader.hlsl -o vertex.spv
我得到这个错误:glslc: error: 'VertexShader.hlsl': .hlsl file encountered but no -fshader-stage specified ahead
那么,如何在Vulkan中编译HLSL?

最佳答案

Solveld添加-fshader-stage = vertex

09-11 19:46