Advertisement
Zgragselus

Execute Indirect

Nov 17th, 2022
1,004
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.01 KB | None | 0 0
  1. /// <summary>
  2. /// Enqueue render pass for processing in graphics context
  3. /// </summary>
  4. /// <param name="heap">Memory heap</param>
  5. /// <param name="context">Graphics context</param>
  6. void RenderPassWireframe::Process(Engine::Entity* camera, Engine::DescriptorHeap* heap, Engine::GraphicsContext* context, Engine::RenderNodeList* renderNodes)
  7. {
  8.     if (camera->GameObject().Has<Engine::CameraComponent>() && renderNodes->GetIndirectDrawCount() > 0)
  9.     {
  10.         Engine::Camera* cam = camera->GameObject().Get<Engine::CameraComponent>()->Get();
  11.  
  12.         Engine::mat4 viewMatrix = cam->GetViewMatrix();
  13.         Engine::mat4 projectionMatrix = cam->GetProjectionMatrix();
  14.  
  15.         memcpy(mCameraBufferPtr, &viewMatrix, sizeof(float) * 16);
  16.         memcpy((float*)mCameraBufferPtr + 16, &projectionMatrix, sizeof(float) * 16);
  17.  
  18.         context->SetPipelineState(mPipelineState);
  19.         context->SetRootSignature(mRootSignature);
  20.         context->SetDescriptorHeap(Engine::DescriptorHeap::CBV_SRV_UAV, heap);
  21.         context->SetViewport(0.0f, 0.0f, (float)mWidth, (float)mHeight);
  22.         context->SetScissorRect(0.0f, 0.0f, (float)mWidth, (float)mHeight);
  23.         context->TransitionResource(mColorBuffer, D3D12_RESOURCE_STATE_RENDER_TARGET, false);
  24.         context->TransitionResource(mDepthBuffer, D3D12_RESOURCE_STATE_DEPTH_WRITE, true);
  25.         context->SetRenderTargets(mColorBuffer, mDepthBuffer);
  26.         context->ClearColor(mColorBuffer, 0.0f, 0.0f, 0.0f, 1.0f);
  27.         context->ClearDepth(mDepthBuffer, 1.0f, 0);
  28.         context->SetPrimitiveTopology(Engine::Graphics::TRIANGLELIST);
  29.  
  30.         context->SetConstantBuffer(2, mCameraBuffer->GetGpuVirtualAddress());
  31.         context->GetCommandList()->Get()->SetGraphicsRootDescriptorTable(1, renderNodes->GetBuffer()->GetSRV().mGpuHandle);
  32.  
  33.         context->ExecuteIndirect(*(renderNodes->GetCommandSignature()), *(renderNodes->GetIndirectArgsBuffer()), 0, renderNodes->GetIndirectDrawCount());
  34.  
  35.         context->TransitionResource(mColorBuffer, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE, false);
  36.         context->TransitionResource(mDepthBuffer, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE, true);
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement