summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2016-09-27 12:09:53 +0200
committerwwylele <wwylele@gmail.com>2016-09-29 04:01:34 +0200
commitd2419570b9fcc27e91369b97853fcf65c4fc47dd (patch)
tree66238e18077ebc1bce05ae36d279619226929619 /src/video_core/rasterizer_interface.h
parentMerge pull request #2099 from citra-emu/fix-clang-format (diff)
downloadyuzu-d2419570b9fcc27e91369b97853fcf65c4fc47dd.tar
yuzu-d2419570b9fcc27e91369b97853fcf65c4fc47dd.tar.gz
yuzu-d2419570b9fcc27e91369b97853fcf65c4fc47dd.tar.bz2
yuzu-d2419570b9fcc27e91369b97853fcf65c4fc47dd.tar.lz
yuzu-d2419570b9fcc27e91369b97853fcf65c4fc47dd.tar.xz
yuzu-d2419570b9fcc27e91369b97853fcf65c4fc47dd.tar.zst
yuzu-d2419570b9fcc27e91369b97853fcf65c4fc47dd.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/rasterizer_interface.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index 71df233b5..8ef7e74c7 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -42,11 +42,16 @@ public:
/// and invalidated
virtual void FlushAndInvalidateRegion(PAddr addr, u32 size) = 0;
- /// Attempt to use a faster method to perform a display transfer
+ /// Attempt to use a faster method to perform a display transfer with is_texture_copy = 0
virtual bool AccelerateDisplayTransfer(const GPU::Regs::DisplayTransferConfig& config) {
return false;
}
+ /// Attempt to use a faster method to perform a display transfer with is_texture_copy = 1
+ virtual bool AccelerateTextureCopy(const GPU::Regs::DisplayTransferConfig& config) {
+ return false;
+ }
+
/// Attempt to use a faster method to fill a region
virtual bool AccelerateFill(const GPU::Regs::MemoryFillConfig& config) {
return false;