diff options
| author | 2019-02-27 11:19:53 -0500 | |
|---|---|---|
| committer | 2019-02-27 11:19:53 -0500 | |
| commit | 66e023fba210741a16a4d629404fdc8578fc5222 (patch) | |
| tree | 71dd53c8dabf9ed9da9ec7e1a636d375fc863ce2 /src/video_core/rasterizer_interface.h | |
| parent | Merge pull request #2171 from lioncash/pragma (diff) | |
| parent | common/math_util: Move contents into the Common namespace (diff) | |
| download | yuzu-66e023fba210741a16a4d629404fdc8578fc5222.tar.gz yuzu-66e023fba210741a16a4d629404fdc8578fc5222.tar.xz yuzu-66e023fba210741a16a4d629404fdc8578fc5222.zip | |
Merge pull request #2167 from lioncash/namespace
common: Move Quaternion, Rectangle, Vec2, Vec3, and Vec4 into the Common namespace
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index b2a223705..6a1dc9cf6 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h | |||
| @@ -47,8 +47,8 @@ public: | |||
| 47 | /// Attempt to use a faster method to perform a surface copy | 47 | /// Attempt to use a faster method to perform a surface copy |
| 48 | virtual bool AccelerateSurfaceCopy(const Tegra::Engines::Fermi2D::Regs::Surface& src, | 48 | virtual bool AccelerateSurfaceCopy(const Tegra::Engines::Fermi2D::Regs::Surface& src, |
| 49 | const Tegra::Engines::Fermi2D::Regs::Surface& dst, | 49 | const Tegra::Engines::Fermi2D::Regs::Surface& dst, |
| 50 | const MathUtil::Rectangle<u32>& src_rect, | 50 | const Common::Rectangle<u32>& src_rect, |
| 51 | const MathUtil::Rectangle<u32>& dst_rect) { | 51 | const Common::Rectangle<u32>& dst_rect) { |
| 52 | return false; | 52 | return false; |
| 53 | } | 53 | } |
| 54 | 54 | ||