0

D3DXAssembleShader 函数在 DirectX 9 中用于从 Assembly 编译着色器。DirectX 11 不支持它。是否有任何替代方法可以从汇编代码创建着色器?

我知道从 fx 或 hlsl 文件编译,但出于我的项目目的,我应该只使用程序集进行编译。

DirectX 9 中使用了以下代码:

static const char VertexShaderCode[] = \
    "vs.3.0\n"
    "dcl_position v0\n"
    "dcl_position o0\n"
    "mov o0, v0\n";
D3DXAssembleShader(VertexShaderCode,sizeof(VertexShaderCode), 0,0, DLL, &VSBuffer, 0);

我正在使用 D3D11 dll 在 DirectX11 中寻找上述代码的替代方案。

我想像下面这样修改我的 asm 文件并创建顶点和像素着色器:

dcl_output o0.xyzw -> dcl_output.o0.zw

我可以在 fx 或 hlsl 文件中做同样的事情吗?

FX 文件:

cbuffer ConstantBuffer : register( b0 )
{
    matrix World;
    matrix View;
    matrix Projection;
}

//--------------------------------------------------------------------------------------
struct VS_OUTPUT
{
    float4 Pos : SV_POSITION;
    float4 Color : COLOR0;
};

//--------------------------------------------------------------------------------------
// Vertex Shader
//--------------------------------------------------------------------------------------
VS_OUTPUT VS( float4 Pos : POSITION, float4 Color : COLOR )
{
    VS_OUTPUT output = (VS_OUTPUT)0;
    output.Pos = mul( Pos, World );
    output.Pos = mul( output.Pos, View );
    output.Pos = mul( output.Pos, Projection );
    output.Color = Color;
    return output;
}


//--------------------------------------------------------------------------------------
// Pixel Shader
//--------------------------------------------------------------------------------------
float4 PS( VS_OUTPUT input ) : SV_Target
{
    return input.Color;
}
4

1 回答 1

0

Shader Model 4.0、4.1、5.0 或 5.1 不正式支持从 HLSL 着色器程序集进行编译。

当您与您一起构建时,fxc.exe您将获得反汇编以进行调试和优化

于 2019-04-24T00:22:49.800 回答