diff options
| author | 2019-05-18 04:57:49 -0400 | |
|---|---|---|
| committer | 2019-06-20 21:38:33 -0300 | |
| commit | 175aa343ff1c9f931b266caf2d19b8df943dab0d (patch) | |
| tree | c9cdf1f449232c7fc0728be6bbc86d8537ff44aa /src/video_core/rasterizer_interface.h | |
| parent | gl_shader_decompiler: Implement image binding settings (diff) | |
| download | yuzu-175aa343ff1c9f931b266caf2d19b8df943dab0d.tar.gz yuzu-175aa343ff1c9f931b266caf2d19b8df943dab0d.tar.xz yuzu-175aa343ff1c9f931b266caf2d19b8df943dab0d.zip | |
texture_cache: Fermi2D reform and implement View Mirage
This also does some fixes on compressed textures reinterpret and on the
Fermi2D engine in general.
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 3c18d3b1f..6007e8c2e 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h | |||
| @@ -52,8 +52,7 @@ public: | |||
| 52 | /// Attempt to use a faster method to perform a surface copy | 52 | /// Attempt to use a faster method to perform a surface copy |
| 53 | virtual bool AccelerateSurfaceCopy(const Tegra::Engines::Fermi2D::Regs::Surface& src, | 53 | virtual bool AccelerateSurfaceCopy(const Tegra::Engines::Fermi2D::Regs::Surface& src, |
| 54 | const Tegra::Engines::Fermi2D::Regs::Surface& dst, | 54 | const Tegra::Engines::Fermi2D::Regs::Surface& dst, |
| 55 | const Common::Rectangle<u32>& src_rect, | 55 | const Tegra::Engines::Fermi2D::Config& copy_config) { |
| 56 | const Common::Rectangle<u32>& dst_rect) { | ||
| 57 | return false; | 56 | return false; |
| 58 | } | 57 | } |
| 59 | 58 | ||