We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac2a5f commit 591180bCopy full SHA for 591180b
src/renderer/dx12/dx12_renderer.cpp
@@ -290,7 +290,7 @@ void cg::renderer::dx12_renderer::create_pso(const std::string& shader_name)
290
};
291
292
D3D12_GRAPHICS_PIPELINE_STATE_DESC pso_desc{};
293
- pso_desc.InputLayout = {input_descriptors, _countof(input_descs)};
+ pso_desc.InputLayout = {input_descs, _countof(input_descs)};
294
pso_desc.pRootSignature = root_signature.Get();
295
pso_desc.VS = CD3DX12_SHADER_BYTECODE(vertex_shader.Get());
296
pso_desc.PS = CD3DX12_SHADER_BYTECODE(pixel_shader.Get());
0 commit comments