2018-03-20 03:00:59 +00: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-03-23 01:04:30 +00:00
|
|
|
#include "video_core/gpu.h"
|
2018-04-24 04:19:36 +00:00
|
|
|
#include "video_core/memory_manager.h"
|
2018-03-20 03:00:59 +00:00
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
|
|
|
|
class RasterizerInterface {
|
|
|
|
public:
|
|
|
|
virtual ~RasterizerInterface() {}
|
|
|
|
|
2018-03-25 02:50:21 +00:00
|
|
|
/// Draw the current batch of vertex arrays
|
|
|
|
virtual void DrawArrays() = 0;
|
2018-03-20 03:00:59 +00:00
|
|
|
|
2018-06-07 04:54:25 +00:00
|
|
|
/// Clear the current framebuffer
|
|
|
|
virtual void Clear() = 0;
|
|
|
|
|
2018-03-20 03:00:59 +00:00
|
|
|
/// Notify rasterizer that the specified Maxwell register has been changed
|
2018-04-14 03:13:47 +00:00
|
|
|
virtual void NotifyMaxwellRegisterChanged(u32 method) = 0;
|
2018-03-20 03:00:59 +00:00
|
|
|
|
2018-04-04 21:07:58 +00:00
|
|
|
/// Notify rasterizer that all caches should be flushed to Switch memory
|
2018-03-20 03:00:59 +00:00
|
|
|
virtual void FlushAll() = 0;
|
|
|
|
|
2018-04-04 21:07:58 +00:00
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
|
2018-04-24 04:19:36 +00:00
|
|
|
virtual void FlushRegion(Tegra::GPUVAddr addr, u64 size) = 0;
|
2018-03-20 03:00:59 +00:00
|
|
|
|
|
|
|
/// Notify rasterizer that any caches of the specified region should be invalidated
|
2018-04-24 04:19:36 +00:00
|
|
|
virtual void InvalidateRegion(Tegra::GPUVAddr addr, u64 size) = 0;
|
2018-03-20 03:00:59 +00:00
|
|
|
|
2018-04-04 21:07:58 +00:00
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
|
2018-03-20 03:00:59 +00:00
|
|
|
/// and invalidated
|
2018-04-24 04:19:36 +00:00
|
|
|
virtual void FlushAndInvalidateRegion(Tegra::GPUVAddr addr, u64 size) = 0;
|
2018-03-20 03:00:59 +00:00
|
|
|
|
|
|
|
/// Attempt to use a faster method to perform a display transfer with is_texture_copy = 0
|
|
|
|
virtual bool AccelerateDisplayTransfer(const void* config) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempt to use a faster method to perform a display transfer with is_texture_copy = 1
|
|
|
|
virtual bool AccelerateTextureCopy(const void* config) {
|
|
|
|
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 21:42:29 +00:00
|
|
|
virtual bool AccelerateDisplay(const Tegra::FramebufferConfig& config, VAddr framebuffer_addr,
|
2018-08-20 23:34:02 +00:00
|
|
|
u32 pixel_stride) {
|
2018-03-20 03:00:59 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool AccelerateDrawBatch(bool is_indexed) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-08-28 22:43:08 +00: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 03:00:59 +00:00
|
|
|
};
|
|
|
|
} // namespace VideoCore
|