2018-03-20 04:00:59 +01:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2018-10-06 05:39:03 +02:00
|
|
|
#include "video_core/engines/fermi_2d.h"
|
2018-03-23 02:04:30 +01:00
|
|
|
#include "video_core/gpu.h"
|
2018-04-24 06:19:36 +02:00
|
|
|
#include "video_core/memory_manager.h"
|
2018-03-20 04:00:59 +01:00
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
|
|
|
|
class RasterizerInterface {
|
|
|
|
public:
|
|
|
|
virtual ~RasterizerInterface() {}
|
|
|
|
|
2018-03-25 04:50:21 +02:00
|
|
|
/// Draw the current batch of vertex arrays
|
|
|
|
virtual void DrawArrays() = 0;
|
2018-03-20 04:00:59 +01:00
|
|
|
|
2018-06-07 06:54:25 +02:00
|
|
|
/// Clear the current framebuffer
|
|
|
|
virtual void Clear() = 0;
|
|
|
|
|
2018-04-04 23:07:58 +02:00
|
|
|
/// Notify rasterizer that all caches should be flushed to Switch memory
|
2018-03-20 04:00:59 +01:00
|
|
|
virtual void FlushAll() = 0;
|
|
|
|
|
2018-04-04 23:07:58 +02:00
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
|
2018-08-28 03:35:15 +02:00
|
|
|
virtual void FlushRegion(VAddr addr, u64 size) = 0;
|
2018-03-20 04:00:59 +01:00
|
|
|
|
|
|
|
/// Notify rasterizer that any caches of the specified region should be invalidated
|
2018-08-28 03:35:15 +02:00
|
|
|
virtual void InvalidateRegion(VAddr addr, u64 size) = 0;
|
2018-03-20 04:00:59 +01:00
|
|
|
|
2018-04-04 23:07:58 +02:00
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
|
2018-03-20 04:00:59 +01:00
|
|
|
/// and invalidated
|
2018-08-28 03:35:15 +02:00
|
|
|
virtual void FlushAndInvalidateRegion(VAddr addr, u64 size) = 0;
|
2018-03-20 04:00:59 +01:00
|
|
|
|
2018-10-06 05:39:03 +02:00
|
|
|
/// Attempt to use a faster method to perform a surface copy
|
|
|
|
virtual bool AccelerateSurfaceCopy(const Tegra::Engines::Fermi2D::Regs::Surface& src,
|
|
|
|
const Tegra::Engines::Fermi2D::Regs::Surface& dst) {
|
2018-03-20 04:00:59 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempt to use a faster method to fill a region
|
|
|
|
virtual bool AccelerateFill(const void* config) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempt to use a faster method to display the framebuffer to screen
|
2018-06-24 23:42:29 +02:00
|
|
|
virtual bool AccelerateDisplay(const Tegra::FramebufferConfig& config, VAddr framebuffer_addr,
|
2018-08-21 01:34:02 +02:00
|
|
|
u32 pixel_stride) {
|
2018-03-20 04:00:59 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool AccelerateDrawBatch(bool is_indexed) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-08-29 00:43:08 +02:00
|
|
|
|
|
|
|
/// Increase/decrease the number of object in pages touching the specified region
|
|
|
|
virtual void UpdatePagesCachedCount(Tegra::GPUVAddr addr, u64 size, int delta) {}
|
2018-03-20 04:00:59 +01:00
|
|
|
};
|
|
|
|
} // namespace VideoCore
|