如何在HLSL中使用maxInstructionCount
本文关键字:maxInstructionCount HLSL | 更新日期: 2023-09-27 17:59:46
我在XNA应用程序中使用了一个HLSL着色器,我想更改maxInstructionCount,但不确定如何实现。我使用的是ps_2_0。有人知道怎么做吗?
在要应用属性的着色器函数上方,您可以执行:
[maxInstructionCount(100)]
float4 YourFunction()
{
}
本文关键字:maxInstructionCount HLSL | 更新日期: 2023-09-27 17:59:46
我在XNA应用程序中使用了一个HLSL着色器,我想更改maxInstructionCount,但不确定如何实现。我使用的是ps_2_0。有人知道怎么做吗?
在要应用属性的着色器函数上方,您可以执行:
[maxInstructionCount(100)]
float4 YourFunction()
{
}