2016-01-03 23:09:37 +01:00
|
|
|
// Copyright (c) 2015- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program 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, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
2016-01-10 14:24:10 +01:00
|
|
|
#include "GPU/GPUState.h"
|
|
|
|
|
2020-08-03 23:22:11 +02:00
|
|
|
#include "GPU/Vulkan/FramebufferManagerVulkan.h"
|
2016-03-17 11:56:43 +01:00
|
|
|
#include "GPU/Vulkan/VulkanUtil.h"
|
2016-01-10 14:24:10 +01:00
|
|
|
|
2021-08-21 12:39:15 +02:00
|
|
|
using namespace PPSSPP_VK;
|
2021-08-20 11:22:57 +02:00
|
|
|
|
2021-11-14 15:25:28 -08:00
|
|
|
FramebufferManagerVulkan::FramebufferManagerVulkan(Draw::DrawContext *draw) :
|
|
|
|
FramebufferManagerCommon(draw) {
|
2020-05-10 16:53:15 -07:00
|
|
|
presentation_->SetLanguage(GLSL_VULKAN);
|
2016-10-09 11:09:30 -07:00
|
|
|
}
|