[dxvk] Fix weird indentation

how did this happen
This commit is contained in:
Philip Rebohle 2022-07-26 02:40:08 +02:00
parent b06140af47
commit 5fe04eb6ac
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 4 additions and 4 deletions

View File

@ -54,10 +54,10 @@ namespace dxvk {
this->draw(ctx, m_fsResolve,
dstView, dstRect, srcView, srcRect);
} else {
if (m_resolveImage == nullptr
|| m_resolveImage->info().extent != srcView->imageInfo().extent
|| m_resolveImage->info().format != srcView->imageInfo().format)
this->createResolveImage(srcView->imageInfo());
if (m_resolveImage == nullptr
|| m_resolveImage->info().extent != srcView->imageInfo().extent
|| m_resolveImage->info().format != srcView->imageInfo().format)
this->createResolveImage(srcView->imageInfo());
this->resolve(ctx, m_resolveView, srcView);
this->draw(ctx, m_fsBlit, dstView, dstRect, m_resolveView, srcRect);