Skip to content
Snippets Groups Projects
Verified Commit 71d66bc3 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#100] This is getting out of hands!

parent b3e2ed57
No related branches found
No related tags found
1 merge request!82Resolve "Upscaling Module"
Pipeline #26436 passed
...@@ -36,7 +36,8 @@ namespace vkcv::upscaling { ...@@ -36,7 +36,8 @@ namespace vkcv::upscaling {
DescriptorSetHandle m_easuDescriptorSet; DescriptorSetHandle m_easuDescriptorSet;
DescriptorSetHandle m_rcasDescriptorSet; DescriptorSetHandle m_rcasDescriptorSet;
Buffer<FSRConstants> m_constants; Buffer<FSRConstants> m_easuConstants;
Buffer<FSRConstants> m_rcasConstants;
ImageHandle m_intermediateImage; ImageHandle m_intermediateImage;
SamplerHandle m_sampler; SamplerHandle m_sampler;
......
...@@ -142,8 +142,12 @@ namespace vkcv::upscaling { ...@@ -142,8 +142,12 @@ namespace vkcv::upscaling {
m_rcasPipeline(), m_rcasPipeline(),
m_easuDescriptorSet(m_core.createDescriptorSet(getDescriptorBindings())), m_easuDescriptorSet(m_core.createDescriptorSet(getDescriptorBindings())),
m_rcasDescriptorSet(m_core.createDescriptorSet(getDescriptorBindings())), m_rcasDescriptorSet(m_core.createDescriptorSet(getDescriptorBindings())),
m_constants(m_core.createBuffer<FSRConstants>( m_easuConstants(m_core.createBuffer<FSRConstants>(
BufferType::UNIFORM,2, BufferType::UNIFORM,1,
BufferMemoryType::HOST_VISIBLE
)),
m_rcasConstants(m_core.createBuffer<FSRConstants>(
BufferType::UNIFORM,1,
BufferMemoryType::HOST_VISIBLE BufferMemoryType::HOST_VISIBLE
)), )),
m_intermediateImage(), m_intermediateImage(),
...@@ -193,8 +197,7 @@ namespace vkcv::upscaling { ...@@ -193,8 +197,7 @@ namespace vkcv::upscaling {
DescriptorWrites writes; DescriptorWrites writes;
writes.uniformBufferWrites.emplace_back( writes.uniformBufferWrites.emplace_back(
0, m_constants.getHandle(), 0, m_easuConstants.getHandle(),true
true, 0, sizeof(FSRConstants)
); );
writes.samplerWrites.emplace_back(3, m_sampler); writes.samplerWrites.emplace_back(3, m_sampler);
...@@ -215,8 +218,7 @@ namespace vkcv::upscaling { ...@@ -215,8 +218,7 @@ namespace vkcv::upscaling {
DescriptorWrites writes; DescriptorWrites writes;
writes.uniformBufferWrites.emplace_back( writes.uniformBufferWrites.emplace_back(
0, m_constants.getHandle(), 0, m_rcasConstants.getHandle(),true
true, sizeof(FSRConstants), sizeof(FSRConstants)
); );
writes.samplerWrites.emplace_back(3, m_sampler); writes.samplerWrites.emplace_back(3, m_sampler);
...@@ -264,7 +266,7 @@ namespace vkcv::upscaling { ...@@ -264,7 +266,7 @@ namespace vkcv::upscaling {
consts.Sample[0] = (((m_hdr) && (!rcasEnabled)) ? 1 : 0); consts.Sample[0] = (((m_hdr) && (!rcasEnabled)) ? 1 : 0);
m_constants.fill(&consts, 1, 0); m_easuConstants.fill(&consts);
} }
static const uint32_t threadGroupWorkRegionDim = 16; static const uint32_t threadGroupWorkRegionDim = 16;
...@@ -274,7 +276,7 @@ namespace vkcv::upscaling { ...@@ -274,7 +276,7 @@ namespace vkcv::upscaling {
dispatch[1] = (outputHeight + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim; dispatch[1] = (outputHeight + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim;
dispatch[2] = 1; dispatch[2] = 1;
m_core.recordBufferMemoryBarrier(cmdStream, m_constants.getHandle()); m_core.recordBufferMemoryBarrier(cmdStream, m_easuConstants.getHandle());
if (rcasEnabled) { if (rcasEnabled) {
{ {
...@@ -308,10 +310,10 @@ namespace vkcv::upscaling { ...@@ -308,10 +310,10 @@ namespace vkcv::upscaling {
FsrRcasCon(consts.Const0, (1.0f - m_sharpness) * 2.0f); FsrRcasCon(consts.Const0, (1.0f - m_sharpness) * 2.0f);
consts.Sample[0] = (m_hdr ? 1 : 0); consts.Sample[0] = (m_hdr ? 1 : 0);
m_constants.fill(&consts, 1, 1); m_rcasConstants.fill(&consts);
} }
m_core.recordBufferMemoryBarrier(cmdStream, m_constants.getHandle()); m_core.recordBufferMemoryBarrier(cmdStream, m_rcasConstants.getHandle());
m_core.prepareImageForSampling(cmdStream, m_intermediateImage); m_core.prepareImageForSampling(cmdStream, m_intermediateImage);
m_core.recordComputeDispatchToCmdStream( m_core.recordComputeDispatchToCmdStream(
......
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