/* Created on: Nov 7, 2019 Copyright 2019 flyinghead This file is part of Flycast. Flycast is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. Flycast is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Flycast. If not, see . */ #include "oit_drawer.h" #include "hw/pvr/pvr_mem.h" #include void OITDrawer::DrawPoly(const vk::CommandBuffer& cmdBuffer, u32 listType, bool autosort, Pass pass, const PolyParam& poly, u32 first, u32 count) { vk::Rect2D scissorRect; TileClipping tileClip = SetTileClip(poly.tileclip, scissorRect); if (tileClip == TileClipping::Outside) SetScissor(cmdBuffer, scissorRect); else SetScissor(cmdBuffer, baseScissor); float trilinearAlpha = 1.f; if (poly.tsp.FilterMode > 1 && poly.pcw.Texture && listType != ListType_Punch_Through && poly.tcw.MipMapped == 1) { trilinearAlpha = 0.25f * (poly.tsp.MipMapD & 0x3); if (poly.tsp.FilterMode == 2) // Trilinear pass A trilinearAlpha = 1.f - trilinearAlpha; } bool twoVolumes = poly.tsp1.full != (u32)-1 || poly.tcw1.full != (u32)-1; bool gpuPalette = poly.texture != nullptr ? poly.texture->gpuPalette : false; float palette_index = 0.f; if (poly.tcw.PixelFmt == PixelPal4) palette_index = float(poly.tcw.PalSelect << 4) / 1023.f; else palette_index = float((poly.tcw.PalSelect >> 4) << 8) / 1023.f; OITDescriptorSets::PushConstants pushConstants = { { (float)scissorRect.offset.x, (float)scissorRect.offset.y, (float)scissorRect.offset.x + (float)scissorRect.extent.width, (float)scissorRect.offset.y + (float)scissorRect.extent.height }, { poly.tsp.SrcInstr, poly.tsp.DstInstr, 0, 0 }, trilinearAlpha, palette_index, }; if (twoVolumes) { pushConstants.blend_mode1 = { poly.tsp1.SrcInstr, poly.tsp1.DstInstr, 0, 0 }; pushConstants.shading_instr0 = poly.tsp.ShadInstr; pushConstants.shading_instr1 = poly.tsp1.ShadInstr; pushConstants.fog_control0 = poly.tsp.FogCtrl; pushConstants.fog_control1 = poly.tsp1.FogCtrl; pushConstants.use_alpha0 = poly.tsp.UseAlpha; pushConstants.use_alpha1 = poly.tsp1.UseAlpha; pushConstants.ignore_tex_alpha0 = poly.tsp.IgnoreTexA; pushConstants.ignore_tex_alpha1 = poly.tsp1.IgnoreTexA; } cmdBuffer.pushConstants(pipelineManager->GetPipelineLayout(), vk::ShaderStageFlagBits::eFragment, 0, pushConstants); if (!poly.isNaomi2()) { OITDescriptorSets::VtxPushConstants vtxPushConstants {}; if (listType == ListType_Translucent) { u32 firstVertexIdx = pvrrc.idx.head()[pvrrc.global_param_tr.head()->first]; vtxPushConstants.polyNumber = (int)((&poly - pvrrc.global_param_tr.head()) << 17) - firstVertexIdx; }; cmdBuffer.pushConstants(pipelineManager->GetPipelineLayout(), vk::ShaderStageFlagBits::eVertex, sizeof(OITDescriptorSets::PushConstants), vtxPushConstants); } if (poly.pcw.Texture == 1 || poly.isNaomi2()) { vk::DeviceSize offset = 0; u32 polyNumber = 0; if (poly.isNaomi2()) { switch (listType) { case ListType_Opaque: offset = offsets.naomi2OpaqueOffset; polyNumber = &poly - pvrrc.global_param_op.head(); break; case ListType_Punch_Through: offset = offsets.naomi2PunchThroughOffset; polyNumber = &poly - pvrrc.global_param_pt.head(); break; case ListType_Translucent: offset = offsets.naomi2TranslucentOffset; polyNumber = &poly - pvrrc.global_param_tr.head(); break; } } descriptorSets.bindPerPolyDescriptorSets(cmdBuffer, poly, polyNumber, *GetMainBuffer(0)->buffer, offset, offsets.lightsOffset); } vk::Pipeline pipeline = pipelineManager->GetPipeline(listType, autosort, poly, pass, gpuPalette); cmdBuffer.bindPipeline(vk::PipelineBindPoint::eGraphics, pipeline); cmdBuffer.drawIndexed(count, 1, first, 0, 0); } void OITDrawer::DrawList(const vk::CommandBuffer& cmdBuffer, u32 listType, bool sortTriangles, Pass pass, const List& polys, u32 first, u32 last) { const PolyParam *pp_end = polys.head() + last; for (const PolyParam *pp = polys.head() + first; pp != pp_end; pp++) if (pp->count > 2) DrawPoly(cmdBuffer, listType, sortTriangles, pass, *pp, pp->first, pp->count); } template void OITDrawer::DrawModifierVolumes(const vk::CommandBuffer& cmdBuffer, int first, int count) { if (count == 0 || pvrrc.modtrig.used() == 0 || !config::ModifierVolumes) return; vk::Buffer buffer = GetMainBuffer(0)->buffer.get(); cmdBuffer.bindVertexBuffers(0, 1, &buffer, &offsets.modVolOffset); SetScissor(cmdBuffer, baseScissor); ModifierVolumeParam* params = Translucent ? &pvrrc.global_param_mvo_tr.head()[first] : &pvrrc.global_param_mvo.head()[first]; int mod_base = -1; vk::Pipeline pipeline; for (int cmv = 0; cmv < count; cmv++) { ModifierVolumeParam& param = params[cmv]; if (param.count == 0) continue; u32 mv_mode = param.isp.DepthMode; verify(param.first >= 0 && param.first + param.count <= (u32)pvrrc.modtrig.used()); if (mod_base == -1) mod_base = param.first; if (!param.isp.VolumeLast && mv_mode > 0) { // OR'ing (open volume or quad) if (Translucent) pipeline = pipelineManager->GetTrModifierVolumePipeline(ModVolMode::Or, param.isp.CullMode, param.isNaomi2()); else pipeline = pipelineManager->GetModifierVolumePipeline(ModVolMode::Or, param.isp.CullMode, param.isNaomi2()); } else { // XOR'ing (closed volume) if (Translucent) pipeline = pipelineManager->GetTrModifierVolumePipeline(ModVolMode::Xor, param.isp.CullMode, param.isNaomi2()); else pipeline = pipelineManager->GetModifierVolumePipeline(ModVolMode::Xor, param.isp.CullMode, param.isNaomi2()); } cmdBuffer.bindPipeline(vk::PipelineBindPoint::eGraphics, pipeline); vk::DeviceSize uniformOffset = Translucent ? offsets.naomi2TrModVolOffset : offsets.naomi2ModVolOffset; descriptorSets.bindPerPolyDescriptorSets(cmdBuffer, param, first + cmv, *GetMainBuffer(0)->buffer, uniformOffset); cmdBuffer.draw(param.count * 3, 1, param.first * 3, 0); if (mv_mode == 1 || mv_mode == 2) { //Sum the area if (Translucent) { vk::MemoryBarrier barrier(vk::AccessFlagBits::eShaderWrite, vk::AccessFlagBits::eShaderRead); cmdBuffer.pipelineBarrier(vk::PipelineStageFlagBits::eFragmentShader, vk::PipelineStageFlagBits::eFragmentShader, vk::DependencyFlagBits::eByRegion, barrier, nullptr, nullptr); pipeline = pipelineManager->GetTrModifierVolumePipeline(mv_mode == 1 ? ModVolMode::Inclusion : ModVolMode::Exclusion, param.isp.CullMode, param.isNaomi2()); } else pipeline = pipelineManager->GetModifierVolumePipeline(mv_mode == 1 ? ModVolMode::Inclusion : ModVolMode::Exclusion, param.isp.CullMode, param.isNaomi2()); cmdBuffer.bindPipeline(vk::PipelineBindPoint::eGraphics, pipeline); cmdBuffer.draw((param.first + param.count - mod_base) * 3, 1, mod_base * 3, 0); mod_base = -1; if (Translucent) { vk::MemoryBarrier barrier(vk::AccessFlagBits::eShaderWrite, vk::AccessFlagBits::eShaderRead); cmdBuffer.pipelineBarrier(vk::PipelineStageFlagBits::eFragmentShader, vk::PipelineStageFlagBits::eFragmentShader, vk::DependencyFlagBits::eByRegion, barrier, nullptr, nullptr); } } } const vk::DeviceSize offset = 0; cmdBuffer.bindVertexBuffers(0, 1, &buffer, &offset); } void OITDrawer::UploadMainBuffer(const OITDescriptorSets::VertexShaderUniforms& vertexUniforms, const OITDescriptorSets::FragmentShaderUniforms& fragmentUniforms) { BufferPacker packer; // Vertex packer.add(pvrrc.verts.head(), pvrrc.verts.bytes()); // Modifier Volumes offsets.modVolOffset = packer.add(pvrrc.modtrig.head(), pvrrc.modtrig.bytes()); // Index offsets.indexOffset = packer.add(pvrrc.idx.head(), pvrrc.idx.bytes()); // Uniform buffers offsets.vertexUniformOffset = packer.addUniform(&vertexUniforms, sizeof(vertexUniforms)); offsets.fragmentUniformOffset = packer.addUniform(&fragmentUniforms, sizeof(fragmentUniforms)); // Translucent poly params std::vector trPolyParams(pvrrc.global_param_tr.used() * 2); if (pvrrc.global_param_tr.used() == 0) trPolyParams.push_back(0); // makes the validation layers happy else { const PolyParam *pp_end = pvrrc.global_param_tr.LastPtr(0); const PolyParam *pp = pvrrc.global_param_tr.head(); for (int i = 0; pp != pp_end; i += 2, pp++) { trPolyParams[i] = (pp->tsp.full & 0xffff00c0) | ((pp->isp.full >> 16) & 0xe400) | ((pp->pcw.full >> 7) & 1); trPolyParams[i + 1] = pp->tsp1.full; } } offsets.polyParamsSize = trPolyParams.size() * 4; offsets.polyParamsOffset = packer.addStorage(trPolyParams.data(), offsets.polyParamsSize); std::vector n2uniforms; if (settings.platform.isNaomi2()) { packNaomi2Uniforms(packer, offsets, n2uniforms, true); offsets.lightsOffset = packNaomi2Lights(packer); } BufferData *buffer = GetMainBuffer(packer.size()); packer.upload(*buffer); } bool OITDrawer::Draw(const Texture *fogTexture, const Texture *paletteTexture) { vk::CommandBuffer cmdBuffer = NewFrame(); if (needDepthTransition) { needDepthTransition = false; // Not convinced that this is really needed but it makes validation layers happy for (auto& attachment : depthAttachments) setImageLayout(cmdBuffer, attachment->GetImage(), GetContext()->GetDepthFormat(), 1, vk::ImageLayout::eUndefined, vk::ImageLayout::eDepthStencilReadOnlyOptimal); } OITDescriptorSets::VertexShaderUniforms vtxUniforms; vtxUniforms.ndcMat = matrices.GetNormalMatrix(); OITDescriptorSets::FragmentShaderUniforms fragUniforms = MakeFragmentUniforms(); fragUniforms.shade_scale_factor = FPU_SHAD_SCALE.scale_factor / 256.f; // sizeof(Pixel) == 16 fragUniforms.pixelBufferSize = std::min(config::PixelBufferSize, GetContext()->GetMaxMemoryAllocationSize()) / 16; fragUniforms.viewportWidth = maxWidth; currentScissor = vk::Rect2D(); bool firstFrameAfterInit = oitBuffers->isFirstFrameAfterInit(); oitBuffers->OnNewFrame(cmdBuffer); setFirstProvokingVertex(pvrrc); // Upload vertex and index buffers UploadMainBuffer(vtxUniforms, fragUniforms); quadBuffer->Update(); // Update per-frame descriptor set and bind it const vk::Buffer mainBuffer = GetMainBuffer(0)->buffer.get(); descriptorSets.updateUniforms(mainBuffer, (u32)offsets.vertexUniformOffset, (u32)offsets.fragmentUniformOffset, fogTexture->GetImageView(), (u32)offsets.polyParamsOffset, (u32)offsets.polyParamsSize, depthAttachments[0]->GetStencilView(), depthAttachments[0]->GetImageView(), paletteTexture->GetImageView(), oitBuffers); descriptorSets.bindPerFrameDescriptorSets(cmdBuffer); descriptorSets.updateColorInputDescSet(0, colorAttachments[0]->GetImageView()); descriptorSets.updateColorInputDescSet(1, colorAttachments[1]->GetImageView()); // Bind vertex and index buffers const vk::DeviceSize zeroOffset[] = { 0 }; cmdBuffer.bindVertexBuffers(0, 1, &mainBuffer, zeroOffset); cmdBuffer.bindIndexBuffer(mainBuffer, offsets.indexOffset, vk::IndexType::eUint32); // Make sure to push constants even if not used OITDescriptorSets::PushConstants pushConstants = { }; cmdBuffer.pushConstants(pipelineManager->GetPipelineLayout(), vk::ShaderStageFlagBits::eFragment, 0, pushConstants); OITDescriptorSets::VtxPushConstants vtxPushConstants = { }; cmdBuffer.pushConstants(pipelineManager->GetPipelineLayout(), vk::ShaderStageFlagBits::eVertex, sizeof(pushConstants), vtxPushConstants); const std::array clear_colors = { pvrrc.isRTT ? vk::ClearColorValue(std::array{0.f, 0.f, 0.f, 1.f}) : getBorderColor(), pvrrc.isRTT ? vk::ClearColorValue(std::array{0.f, 0.f, 0.f, 1.f}) : getBorderColor(), vk::ClearDepthStencilValue{ 0.f, 0 }, vk::ClearDepthStencilValue{ 0.f, 0 }, }; RenderPass previous_pass = {}; for (int render_pass = 0; render_pass < pvrrc.render_passes.used(); render_pass++) { const RenderPass& current_pass = pvrrc.render_passes.head()[render_pass]; DEBUG_LOG(RENDERER, "Render pass %d OP %d PT %d TR %d MV %d TrMV %d autosort %d", render_pass + 1, current_pass.op_count - previous_pass.op_count, current_pass.pt_count - previous_pass.pt_count, current_pass.tr_count - previous_pass.tr_count, current_pass.mvo_count - previous_pass.mvo_count, current_pass.mvo_tr_count - previous_pass.mvo_tr_count, current_pass.autosort); // Reset the pixel counter oitBuffers->ResetPixelCounter(cmdBuffer); const bool initialPass = render_pass == 0; const bool finalPass = render_pass == pvrrc.render_passes.used() - 1; vk::Framebuffer targetFramebuffer; if (!finalPass) targetFramebuffer = *tempFramebuffers[(pvrrc.render_passes.used() - 1 - render_pass) % 2]; else targetFramebuffer = GetFinalFramebuffer(); cmdBuffer.beginRenderPass( vk::RenderPassBeginInfo(pipelineManager->GetRenderPass(initialPass, finalPass), targetFramebuffer, viewport, clear_colors.size(), clear_colors.data()), vk::SubpassContents::eInline); if (!pvrrc.isRTT && (FB_R_CTRL.fb_enable == 0 || VO_CONTROL.blank_video == 1)) { // Video output disabled cmdBuffer.nextSubpass(vk::SubpassContents::eInline); } else { // Depth + stencil subpass DrawList(cmdBuffer, ListType_Opaque, false, Pass::Depth, pvrrc.global_param_op, previous_pass.op_count, current_pass.op_count); DrawList(cmdBuffer, ListType_Punch_Through, false, Pass::Depth, pvrrc.global_param_pt, previous_pass.pt_count, current_pass.pt_count); DrawModifierVolumes(cmdBuffer, previous_pass.mvo_count, current_pass.mvo_count - previous_pass.mvo_count); // Color subpass cmdBuffer.nextSubpass(vk::SubpassContents::eInline); // OP + PT DrawList(cmdBuffer, ListType_Opaque, false, Pass::Color, pvrrc.global_param_op, previous_pass.op_count, current_pass.op_count); DrawList(cmdBuffer, ListType_Punch_Through, false, Pass::Color, pvrrc.global_param_pt, previous_pass.pt_count, current_pass.pt_count); // TR if (current_pass.autosort) { if (!firstFrameAfterInit) DrawList(cmdBuffer, ListType_Translucent, true, Pass::OIT, pvrrc.global_param_tr, previous_pass.tr_count, current_pass.tr_count); } else DrawList(cmdBuffer, ListType_Translucent, false, Pass::Color, pvrrc.global_param_tr, previous_pass.tr_count, current_pass.tr_count); } // Final subpass cmdBuffer.nextSubpass(vk::SubpassContents::eInline); descriptorSets.bindColorInputDescSet(cmdBuffer, (pvrrc.render_passes.used() - 1 - render_pass) % 2); if (initialPass && !pvrrc.isRTT && clearNeeded[GetCurrentImage()]) { clearNeeded[GetCurrentImage()] = false; SetScissor(cmdBuffer, viewport); cmdBuffer.clearAttachments(vk::ClearAttachment(vk::ImageAspectFlagBits::eColor, 0, clear_colors[0]), vk::ClearRect(viewport, 0, 1)); } SetScissor(cmdBuffer, baseScissor); if (firstFrameAfterInit) { // missing the transparent stuff on the first frame cuz I'm lazy // Clear cmdBuffer.bindPipeline(vk::PipelineBindPoint::eGraphics, pipelineManager->GetClearPipeline()); quadBuffer->Bind(cmdBuffer); quadBuffer->Draw(cmdBuffer); vk::MemoryBarrier memoryBarrier(vk::AccessFlagBits::eShaderWrite, vk::AccessFlagBits::eShaderRead); cmdBuffer.pipelineBarrier(vk::PipelineStageFlagBits::eFragmentShader, vk::PipelineStageFlagBits::eFragmentShader, vk::DependencyFlagBits::eByRegion, 1, &memoryBarrier, 0, nullptr, 0, nullptr); firstFrameAfterInit = false; } // Tr modifier volumes if (GetContext()->GetVendorID() != VulkanContext::VENDOR_QUALCOMM) // Adreno bug DrawModifierVolumes(cmdBuffer, previous_pass.mvo_tr_count, current_pass.mvo_tr_count - previous_pass.mvo_tr_count); vk::Pipeline pipeline = pipelineManager->GetFinalPipeline(); cmdBuffer.bindPipeline(vk::PipelineBindPoint::eGraphics, pipeline); quadBuffer->Bind(cmdBuffer); quadBuffer->Draw(cmdBuffer); if (!finalPass) { // Re-bind vertex and index buffers cmdBuffer.bindVertexBuffers(0, 1, &mainBuffer, zeroOffset); cmdBuffer.bindIndexBuffer(mainBuffer, offsets.indexOffset, vk::IndexType::eUint32); // Tr depth-only pass DrawList(cmdBuffer, ListType_Translucent, current_pass.autosort, Pass::Depth, pvrrc.global_param_tr, previous_pass.tr_count, current_pass.tr_count); cmdBuffer.endRenderPass(); } previous_pass = current_pass; } return !pvrrc.isRTT; } void OITDrawer::MakeBuffers(int width, int height) { oitBuffers->Init(width, height); if (width <= maxWidth && height <= maxHeight) return; maxWidth = std::max(maxWidth, width); maxHeight = std::max(maxHeight, height); GetContext()->WaitIdle(); for (auto& attachment : colorAttachments) { attachment.reset(); attachment = std::unique_ptr( new FramebufferAttachment(GetContext()->GetPhysicalDevice(), GetContext()->GetDevice())); attachment->Init(maxWidth, maxHeight, GetColorFormat(), vk::ImageUsageFlagBits::eColorAttachment | vk::ImageUsageFlagBits::eInputAttachment); } for (auto& attachment : depthAttachments) { attachment.reset(); attachment = std::unique_ptr( new FramebufferAttachment(GetContext()->GetPhysicalDevice(), GetContext()->GetDevice())); attachment->Init(maxWidth, maxHeight, GetContext()->GetDepthFormat(), vk::ImageUsageFlagBits::eDepthStencilAttachment | vk::ImageUsageFlagBits::eInputAttachment); } needDepthTransition = true; vk::ImageView attachments[] = { colorAttachments[1]->GetImageView(), colorAttachments[0]->GetImageView(), depthAttachments[0]->GetImageView(), depthAttachments[1]->GetImageView(), }; vk::FramebufferCreateInfo createInfo(vk::FramebufferCreateFlags(), pipelineManager->GetRenderPass(true, true), ARRAY_SIZE(attachments), attachments, maxWidth, maxHeight, 1); tempFramebuffers[0] = GetContext()->GetDevice().createFramebufferUnique(createInfo); attachments[0] = attachments[1]; attachments[1] = colorAttachments[1]->GetImageView(); tempFramebuffers[1] = GetContext()->GetDevice().createFramebufferUnique(createInfo); } void OITScreenDrawer::MakeFramebuffers(const vk::Extent2D& viewport) { this->viewport.offset.x = 0; this->viewport.offset.y = 0; this->viewport.extent = viewport; MakeBuffers(viewport.width, viewport.height); framebuffers.clear(); finalColorAttachments.clear(); transitionNeeded.clear(); clearNeeded.clear(); while (finalColorAttachments.size() < GetContext()->GetSwapChainSize()) { finalColorAttachments.push_back(std::unique_ptr( new FramebufferAttachment(GetContext()->GetPhysicalDevice(), GetContext()->GetDevice()))); finalColorAttachments.back()->Init(viewport.width, viewport.height, GetContext()->GetColorFormat(), vk::ImageUsageFlagBits::eColorAttachment | vk::ImageUsageFlagBits::eSampled); vk::ImageView attachments[] = { finalColorAttachments.back()->GetImageView(), colorAttachments[0]->GetImageView(), depthAttachments[0]->GetImageView(), depthAttachments[1]->GetImageView(), }; vk::FramebufferCreateInfo createInfo(vk::FramebufferCreateFlags(), screenPipelineManager->GetRenderPass(true, true), ARRAY_SIZE(attachments), attachments, viewport.width, viewport.height, 1); framebuffers.push_back(GetContext()->GetDevice().createFramebufferUnique(createInfo)); transitionNeeded.push_back(true); clearNeeded.push_back(true); } } vk::CommandBuffer OITTextureDrawer::NewFrame() { DEBUG_LOG(RENDERER, "RenderToTexture packmode=%d stride=%d - %d x %d @ %06x", pvrrc.fb_W_CTRL.fb_packmode, pvrrc.fb_W_LINESTRIDE * 8, pvrrc.fb_X_CLIP.max + 1, pvrrc.fb_Y_CLIP.max + 1, pvrrc.fb_W_SOF1 & VRAM_MASK); NewImage(); matrices.CalcMatrices(&pvrrc); textureAddr = pvrrc.fb_W_SOF1 & VRAM_MASK; u32 origWidth = pvrrc.getFramebufferWidth(); u32 origHeight = pvrrc.getFramebufferHeight(); u32 upscaledWidth = origWidth; u32 upscaledHeight = origHeight; u32 widthPow2; u32 heightPow2; getRenderToTextureDimensions(upscaledWidth, upscaledHeight, widthPow2, heightPow2); rttPipelineManager->CheckSettingsChange(); VulkanContext *context = GetContext(); vk::Device device = context->GetDevice(); vk::CommandBuffer commandBuffer = commandPool->Allocate(); commandBuffer.begin(vk::CommandBufferBeginInfo(vk::CommandBufferUsageFlagBits::eOneTimeSubmit)); MakeBuffers(widthPow2, heightPow2); vk::ImageView colorImageView; vk::ImageLayout colorImageCurrentLayout; if (!config::RenderToTextureBuffer) { texture = textureCache->getRTTexture(textureAddr, pvrrc.fb_W_CTRL.fb_packmode, origWidth, origHeight); if (textureCache->IsInFlight(texture)) { texture->readOnlyImageView = *texture->imageView; textureCache->DestroyLater(texture); } textureCache->SetInFlight(texture); if (texture->format != vk::Format::eR8G8B8A8Unorm || texture->extent.width != widthPow2 || texture->extent.height != heightPow2) { texture->extent = vk::Extent2D(widthPow2, heightPow2); texture->format = vk::Format::eR8G8B8A8Unorm; texture->needsStaging = true; texture->CreateImage(vk::ImageTiling::eOptimal, vk::ImageUsageFlagBits::eColorAttachment | vk::ImageUsageFlagBits::eSampled, vk::ImageLayout::eUndefined, vk::ImageAspectFlagBits::eColor); colorImageCurrentLayout = vk::ImageLayout::eUndefined; } else { colorImageCurrentLayout = vk::ImageLayout::eShaderReadOnlyOptimal; } colorImage = *texture->image; colorImageView = texture->GetImageView(); } else { if (!colorAttachment || widthPow2 > colorAttachment->getExtent().width || heightPow2 > colorAttachment->getExtent().height) { if (!colorAttachment) colorAttachment = std::unique_ptr(new FramebufferAttachment(context->GetPhysicalDevice(), device)); else GetContext()->WaitIdle(); colorAttachment->Init(widthPow2, heightPow2, vk::Format::eR8G8B8A8Unorm, vk::ImageUsageFlagBits::eColorAttachment | vk::ImageUsageFlagBits::eTransferSrc); colorImageCurrentLayout = vk::ImageLayout::eUndefined; } else colorImageCurrentLayout = vk::ImageLayout::eTransferSrcOptimal; colorImage = colorAttachment->GetImage(); colorImageView = colorAttachment->GetImageView(); } viewport.offset.x = 0; viewport.offset.y = 0; viewport.extent.width = widthPow2; viewport.extent.height = heightPow2; setImageLayout(commandBuffer, colorImage, vk::Format::eR8G8B8A8Unorm, 1, colorImageCurrentLayout, vk::ImageLayout::eColorAttachmentOptimal); vk::ImageView imageViews[] = { colorImageView, colorAttachments[0]->GetImageView(), depthAttachments[0]->GetImageView(), depthAttachments[1]->GetImageView(), }; framebuffers.resize(GetContext()->GetSwapChainSize()); framebuffers[GetCurrentImage()] = device.createFramebufferUnique(vk::FramebufferCreateInfo(vk::FramebufferCreateFlags(), rttPipelineManager->GetRenderPass(true, true), ARRAY_SIZE(imageViews), imageViews, widthPow2, heightPow2, 1)); commandBuffer.setViewport(0, vk::Viewport(0.0f, 0.0f, (float)upscaledWidth, (float)upscaledHeight, 1.0f, 0.0f)); u32 minX = pvrrc.fb_X_CLIP.min; u32 minY = pvrrc.fb_Y_CLIP.min; getRenderToTextureDimensions(minX, minY, widthPow2, heightPow2); baseScissor = vk::Rect2D(vk::Offset2D(minX, minY), vk::Extent2D(upscaledWidth, upscaledHeight)); commandBuffer.setScissor(0, baseScissor); currentCommandBuffer = commandBuffer; return commandBuffer; } void OITTextureDrawer::EndFrame() { currentCommandBuffer.endRenderPass(); u32 clippedWidth = pvrrc.getFramebufferWidth(); u32 clippedHeight = pvrrc.getFramebufferHeight(); if (config::RenderToTextureBuffer) { vk::BufferImageCopy copyRegion(0, clippedWidth, clippedHeight, vk::ImageSubresourceLayers(vk::ImageAspectFlagBits::eColor, 0, 0, 1), vk::Offset3D(0, 0, 0), vk::Extent3D(clippedWidth, clippedHeight, 1)); currentCommandBuffer.copyImageToBuffer(colorAttachment->GetImage(), vk::ImageLayout::eTransferSrcOptimal, *colorAttachment->GetBufferData()->buffer, copyRegion); vk::BufferMemoryBarrier bufferMemoryBarrier( vk::AccessFlagBits::eTransferWrite, vk::AccessFlagBits::eHostRead, VK_QUEUE_FAMILY_IGNORED, VK_QUEUE_FAMILY_IGNORED, *colorAttachment->GetBufferData()->buffer, 0, VK_WHOLE_SIZE); currentCommandBuffer.pipelineBarrier(vk::PipelineStageFlagBits::eTransfer, vk::PipelineStageFlagBits::eHost, {}, nullptr, bufferMemoryBarrier, nullptr); } currentCommandBuffer.end(); colorImage = nullptr; currentCommandBuffer = nullptr; commandPool->EndFrame(); if (config::RenderToTextureBuffer) { vk::Fence fence = commandPool->GetCurrentFence(); GetContext()->GetDevice().waitForFences(1, &fence, true, UINT64_MAX); u16 *dst = (u16 *)&vram[textureAddr]; PixelBuffer tmpBuf; tmpBuf.init(clippedWidth, clippedHeight); colorAttachment->GetBufferData()->download(clippedWidth * clippedHeight * 4, tmpBuf.data()); WriteTextureToVRam(clippedWidth, clippedHeight, (u8 *)tmpBuf.data(), dst, pvrrc.fb_W_CTRL, pvrrc.fb_W_LINESTRIDE * 8); } else { //memset(&vram[fb_rtt.TexAddr << 3], '\0', size); texture->dirty = 0; texture->protectVRam(); } OITDrawer::EndFrame(); } vk::CommandBuffer OITScreenDrawer::NewFrame() { if (frameRendered) { // in case the previous image was never presented frameRendered = false; NewImage(); } vk::CommandBuffer commandBuffer = commandPool->Allocate(); commandBuffer.begin(vk::CommandBufferBeginInfo(vk::CommandBufferUsageFlagBits::eOneTimeSubmit)); if (transitionNeeded[GetCurrentImage()]) { setImageLayout(commandBuffer, finalColorAttachments[GetCurrentImage()]->GetImage(), GetColorFormat(), 1, vk::ImageLayout::eUndefined, vk::ImageLayout::eShaderReadOnlyOptimal); transitionNeeded[GetCurrentImage()] = false; } matrices.CalcMatrices(&pvrrc, viewport.extent.width, viewport.extent.height); SetBaseScissor(viewport.extent); commandBuffer.setScissor(0, baseScissor); commandBuffer.setViewport(0, vk::Viewport((float)viewport.offset.x, (float)viewport.offset.y, (float)viewport.extent.width, (float)viewport.extent.height, 1.0f, 0.0f)); currentCommandBuffer = commandBuffer; return commandBuffer; }