Searched refs:root_sig_desc (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
H A Dd3d12_root_signature.cpp147 D3D12_VERSIONED_ROOT_SIGNATURE_DESC root_sig_desc; local in function:create_root_signature
148 root_sig_desc.Version = D3D_ROOT_SIGNATURE_VERSION_1_1;
149 root_sig_desc.Desc_1_1.NumParameters = num_params;
150 root_sig_desc.Desc_1_1.pParameters = (num_params > 0) ? root_params : NULL;
151 root_sig_desc.Desc_1_1.NumStaticSamplers = 0;
152 root_sig_desc.Desc_1_1.pStaticSamplers = NULL;
153 root_sig_desc.Desc_1_1.Flags = D3D12_ROOT_SIGNATURE_FLAG_NONE;
156 root_sig_desc.Desc_1_1.Flags |= D3D12_ROOT_SIGNATURE_FLAG_ALLOW_INPUT_ASSEMBLER_INPUT_LAYOUT;
159 root_sig_desc.Desc_1_1.Flags |= D3D12_ROOT_SIGNATURE_FLAG_ALLOW_STREAM_OUTPUT;
162 if (FAILED(ctx->D3D12SerializeVersionedRootSignature(&root_sig_desc,
[all...]
/xsrc/external/mit/MesaLib/dist/src/microsoft/clc/
H A Dcompute_test.cpp191 D3D12_ROOT_SIGNATURE_DESC1 root_sig_desc; local in function:ComputeTest::create_root_signature
192 root_sig_desc.NumParameters = 1;
193 root_sig_desc.pParameters = &root_param;
194 root_sig_desc.NumStaticSamplers = 0;
195 root_sig_desc.pStaticSamplers = NULL;
196 root_sig_desc.Flags = D3D12_ROOT_SIGNATURE_FLAG_NONE;
200 versioned_desc.Desc_1_1 = root_sig_desc;

Completed in 4 milliseconds