2018-03-18 20:15:05 +00:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "video_core/engines/fermi_2d.h"
|
|
|
|
#include "video_core/engines/maxwell_3d.h"
|
|
|
|
#include "video_core/engines/maxwell_compute.h"
|
|
|
|
#include "video_core/gpu.h"
|
|
|
|
|
|
|
|
namespace Tegra {
|
|
|
|
|
|
|
|
GPU::GPU() {
|
|
|
|
memory_manager = std::make_unique<MemoryManager>();
|
|
|
|
maxwell_3d = std::make_unique<Engines::Maxwell3D>(*memory_manager);
|
2018-04-24 01:12:40 +00:00
|
|
|
fermi_2d = std::make_unique<Engines::Fermi2D>(*memory_manager);
|
2018-03-18 20:15:05 +00:00
|
|
|
maxwell_compute = std::make_unique<Engines::MaxwellCompute>();
|
|
|
|
}
|
|
|
|
|
|
|
|
GPU::~GPU() = default;
|
|
|
|
|
2018-03-22 20:19:35 +00:00
|
|
|
const Tegra::Engines::Maxwell3D& GPU::Get3DEngine() const {
|
|
|
|
return *maxwell_3d;
|
|
|
|
}
|
|
|
|
|
2018-04-25 02:57:10 +00:00
|
|
|
u32 RenderTargetBytesPerPixel(RenderTargetFormat format) {
|
|
|
|
ASSERT(format != RenderTargetFormat::NONE);
|
|
|
|
|
|
|
|
switch (format) {
|
|
|
|
case RenderTargetFormat::RGBA8_UNORM:
|
|
|
|
case RenderTargetFormat::RGB10_A2_UNORM:
|
|
|
|
return 4;
|
|
|
|
default:
|
|
|
|
UNIMPLEMENTED_MSG("Unimplemented render target format %u", static_cast<u32>(format));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-18 20:15:05 +00:00
|
|
|
} // namespace Tegra
|