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-03-20 03:00:59 +00:00
|
|
|
|
|
|
|
struct ScreenInfo;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
/// Notify rasterizer that the specified Maxwell register has been changed
|
|
|
|
virtual void NotifyMaxwellRegisterChanged(u32 id) = 0;
|
|
|
|
|
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-03-23 19:01:45 +00:00
|
|
|
virtual void FlushRegion(VAddr 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-03-23 19:01:45 +00:00
|
|
|
virtual void InvalidateRegion(VAddr 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-03-23 19:01:45 +00:00
|
|
|
virtual void FlushAndInvalidateRegion(VAddr 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-03-23 01:04:30 +00:00
|
|
|
virtual bool AccelerateDisplay(const Tegra::FramebufferConfig& framebuffer,
|
2018-03-23 01:13:46 +00:00
|
|
|
VAddr framebuffer_addr, u32 pixel_stride,
|
2018-03-20 03:00:59 +00:00
|
|
|
ScreenInfo& screen_info) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool AccelerateDrawBatch(bool is_indexed) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace VideoCore
|