@@ -140,12 +140,12 @@ namespace dxvk {
140
140
void ** ppBuffer) {
141
141
InitReturnPtr (ppBuffer);
142
142
143
- if (BufferId > m_backBuffers. size () ) {
144
- Logger::err (str::format ( " D3D11: Invalid buffer index: " , BufferId) );
143
+ if (BufferId > 0 ) {
144
+ Logger::err (" D3D11: GetImage: BufferId > 0 not supported " );
145
145
return DXGI_ERROR_UNSUPPORTED;
146
146
}
147
147
148
- return m_backBuffers[BufferId] ->QueryInterface (riid, ppBuffer);
148
+ return m_backBuffer ->QueryInterface (riid, ppBuffer);
149
149
}
150
150
151
151
@@ -396,10 +396,7 @@ namespace dxvk {
396
396
397
397
if (m_hud != nullptr )
398
398
m_hud->render (m_context, info.format , info.imageExtent );
399
-
400
- if (!SyncInterval || i == SyncInterval - 1 )
401
- RotateBackBuffer ();
402
-
399
+
403
400
SubmitPresent (immediateContext, sync , i);
404
401
}
405
402
@@ -562,25 +559,11 @@ namespace dxvk {
562
559
563
560
564
561
void D3D11SwapChain::CreateBackBuffer () {
565
- bool sequentialPresent = false ;
566
-
567
- if (IsSequentialSwapChain ()) {
568
- if (!(sequentialPresent = SupportsSparseImages ())) {
569
- Logger::warn (" Sequential present mode requeted, but sparse images not supported"
570
- " by the Vulkan implementation. Falling back to Discard semantics." );
571
- }
572
- }
573
-
574
562
// Explicitly destroy current swap image before
575
563
// creating a new one to free up resources
576
- m_swapImages.clear ();
577
- m_backBuffers.clear ();
578
- m_swapImageView = nullptr ;
579
-
580
- uint32_t bufferCount = 1u ;
581
-
582
- if (sequentialPresent)
583
- bufferCount = m_desc.BufferCount ;
564
+ m_swapImage = nullptr ;
565
+ m_swapImageView = nullptr ;
566
+ m_backBuffer = nullptr ;
584
567
585
568
// Create new back buffer
586
569
D3D11_COMMON_TEXTURE_DESC desc;
@@ -609,47 +592,27 @@ namespace dxvk {
609
592
if (m_desc.Flags & DXGI_SWAP_CHAIN_FLAG_GDI_COMPATIBLE)
610
593
desc.MiscFlags |= D3D11_RESOURCE_MISC_GDI_COMPATIBLE;
611
594
612
- if (sequentialPresent)
613
- desc.MiscFlags |= D3D11_RESOURCE_MISC_TILED;
614
-
615
595
DXGI_USAGE dxgiUsage = DXGI_USAGE_BACK_BUFFER;
616
596
617
597
if (m_desc.SwapEffect == DXGI_SWAP_EFFECT_DISCARD
618
598
|| m_desc.SwapEffect == DXGI_SWAP_EFFECT_FLIP_DISCARD)
619
599
dxgiUsage |= DXGI_USAGE_DISCARD_ON_PRESENT;
620
600
621
- for (uint32_t i = 0 ; i < bufferCount; i++) {
622
- m_backBuffers.push_back (new D3D11Texture2D (m_parent, this , &desc, dxgiUsage));
623
- m_swapImages.push_back (GetCommonTexture (m_backBuffers.back ().ptr ())->GetImage ());
624
-
625
- dxgiUsage |= DXGI_USAGE_READ_ONLY;
626
- }
627
-
628
- // If necessary, create a sparse page allocator
629
- m_sparseFrameIndex = 0 ;
630
-
631
- if (sequentialPresent) {
632
- m_sparsePagesPerImage = m_swapImages.front ()->getSparsePageTable ()->getPageCount ();
633
-
634
- m_sparseAllocator = m_device->createSparsePageAllocator ();
635
- m_sparseAllocator->setCapacity (m_sparsePagesPerImage * bufferCount);
636
- } else {
637
- m_sparsePagesPerImage = 0 ;
638
- m_sparseAllocator = nullptr ;
639
- }
601
+ m_backBuffer = new D3D11Texture2D (m_parent, this , &desc, dxgiUsage);
602
+ m_swapImage = GetCommonTexture (m_backBuffer.ptr ())->GetImage ();
640
603
641
604
// Create an image view that allows the
642
605
// image to be bound as a shader resource.
643
606
DxvkImageViewCreateInfo viewInfo;
644
607
viewInfo.type = VK_IMAGE_VIEW_TYPE_2D;
645
- viewInfo.format = m_swapImages. front () ->info ().format ;
608
+ viewInfo.format = m_swapImage ->info ().format ;
646
609
viewInfo.usage = VK_IMAGE_USAGE_SAMPLED_BIT;
647
610
viewInfo.aspect = VK_IMAGE_ASPECT_COLOR_BIT;
648
611
viewInfo.minLevel = 0 ;
649
612
viewInfo.numLevels = 1 ;
650
613
viewInfo.minLayer = 0 ;
651
614
viewInfo.numLayers = 1 ;
652
- m_swapImageView = m_device->createImageView (m_swapImages. front () , viewInfo);
615
+ m_swapImageView = m_device->createImageView (m_swapImage , viewInfo);
653
616
654
617
// Initialize the image so that we can use it. Clearing
655
618
// to black prevents garbled output for the first frame.
@@ -663,30 +626,8 @@ namespace dxvk {
663
626
m_context->beginRecording (
664
627
m_device->createCommandList ());
665
628
666
- for (uint32_t i = 0 ; i < m_swapImages.size (); i++) {
667
- if (sequentialPresent) {
668
- DxvkSparseBindInfo sparseBind;
669
- sparseBind.dstResource = m_swapImages[i];
670
- sparseBind.srcAllocator = m_sparseAllocator;
671
-
672
- for (uint32_t j = 0 ; j < m_sparsePagesPerImage; j++) {
673
- auto & bind = sparseBind.binds .emplace_back ();
674
- bind.mode = DxvkSparseBindMode::Bind;
675
- bind.srcPage = j + i * m_sparsePagesPerImage;
676
- bind.dstPage = j;
677
- }
678
-
679
- m_context->updatePageTable (sparseBind,
680
- DxvkSparseBindFlag::SkipSynchronization);
681
- m_context->initSparseImage (m_swapImages[i]);
682
-
683
- Rc<DxvkImageView> view = m_device->createImageView (m_swapImages.front (), viewInfo);
684
- m_context->clearRenderTarget (view, VK_IMAGE_ASPECT_COLOR_BIT, VkClearValue ());
685
- } else {
686
- m_context->initImage (m_swapImages[i],
687
- subresources, VK_IMAGE_LAYOUT_UNDEFINED);
688
- }
689
- }
629
+ m_context->initImage (m_swapImage,
630
+ subresources, VK_IMAGE_LAYOUT_UNDEFINED);
690
631
691
632
m_device->submitCommandList (
692
633
m_context->endRecording (),
@@ -797,51 +738,6 @@ namespace dxvk {
797
738
}
798
739
799
740
800
- void D3D11SwapChain::RotateBackBuffer () {
801
- uint32_t bufferCount = m_swapImages.size ();
802
-
803
- if (bufferCount < 2 )
804
- return ;
805
-
806
- m_sparseFrameIndex += 1 ;
807
- m_sparseFrameIndex %= bufferCount;
808
-
809
- for (uint32_t i = 0 ; i < bufferCount; i++) {
810
- uint32_t firstImage = (m_sparseFrameIndex + i) % bufferCount;
811
-
812
- DxvkSparseBindInfo sparseBind;
813
- sparseBind.dstResource = m_swapImages[i];
814
- sparseBind.srcAllocator = m_sparseAllocator;
815
-
816
- for (uint32_t j = 0 ; j < m_sparsePagesPerImage; j++) {
817
- auto & bind = sparseBind.binds .emplace_back ();
818
- bind.mode = DxvkSparseBindMode::Bind;
819
- bind.srcPage = j + firstImage * m_sparsePagesPerImage;
820
- bind.dstPage = j;
821
- }
822
-
823
- m_context->updatePageTable (sparseBind, 0 );
824
- }
825
- }
826
-
827
-
828
- bool D3D11SwapChain::IsSequentialSwapChain () const {
829
- return m_desc.SwapEffect == DXGI_SWAP_EFFECT_SEQUENTIAL
830
- || m_desc.SwapEffect == DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL;
831
- }
832
-
833
-
834
- bool D3D11SwapChain::SupportsSparseImages () const {
835
- const auto & properties = m_device->properties ().core .properties ;
836
- const auto & features = m_device->features ().core .features ;
837
-
838
- return features.sparseBinding
839
- && features.sparseResidencyImage2D
840
- && features.sparseResidencyAliased
841
- && properties.sparseProperties .residencyStandard2DBlockShape ;
842
- }
843
-
844
-
845
741
std::string D3D11SwapChain::GetApiName () const {
846
742
Com<IDXGIDXVKDevice> device;
847
743
m_parent->QueryInterface (__uuidof (IDXGIDXVKDevice), reinterpret_cast <void **>(&device));
0 commit comments