Skip to content
Snippets Groups Projects
Commit 31de9c08 authored by Alexander Gauggel's avatar Alexander Gauggel
Browse files

[#106] Attempt to fix mac compile error

parent 401ed7ad
No related branches found
No related tags found
1 merge request!89Resolve "Indirect Dispatch"
Pipeline #26638 passed
......@@ -136,10 +136,9 @@ void App::run() {
m_core.prepareImageForStorage (cmdStream, swapchainInput);
uint32_t gammaCorrectionDispatch[3] = {
(m_windowWidth + 7) / 8,
(m_windowHeight + 7) / 8,
1
};
static_cast<uint32_t>((m_windowWidth + 7) / 8),
static_cast<uint32_t>((m_windowHeight + 7) / 8),
static_cast<uint32_t>(1) };
m_core.recordComputeDispatchToCmdStream(
cmdStream,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment