diff options
| author | 2019-02-13 15:57:27 -0400 | |
|---|---|---|
| committer | 2019-02-27 21:58:48 -0400 | |
| commit | d6b9b516061b460ea422469557a931932c565ac8 (patch) | |
| tree | fb6729578c7d3f2bb2a42dc10106b75b45d98b14 /src | |
| parent | Remove NotifyFrameBuffer as we are doing a texception pass every drawcall. (diff) | |
| download | yuzu-d6b9b516061b460ea422469557a931932c565ac8.tar.gz yuzu-d6b9b516061b460ea422469557a931932c565ac8.tar.xz yuzu-d6b9b516061b460ea422469557a931932c565ac8.zip | |
Fix linux compile error.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.h b/src/video_core/renderer_opengl/gl_rasterizer_cache.h index bbad719b2..ed180a683 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer_cache.h +++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.h | |||
| @@ -518,7 +518,7 @@ private: | |||
| 518 | Surface last_depth_buffer; | 518 | Surface last_depth_buffer; |
| 519 | 519 | ||
| 520 | using SurfaceIntervalCache = boost::icl::interval_map<VAddr, Surface>; | 520 | using SurfaceIntervalCache = boost::icl::interval_map<VAddr, Surface>; |
| 521 | using SurfaceInterval = typename IntervalCache::interval_type; | 521 | using SurfaceInterval = typename SurfaceIntervalCache::interval_type; |
| 522 | 522 | ||
| 523 | static auto GetReinterpretInterval(const Surface& object) { | 523 | static auto GetReinterpretInterval(const Surface& object) { |
| 524 | return SurfaceInterval::right_open(object->GetAddr() + 1, | 524 | return SurfaceInterval::right_open(object->GetAddr() + 1, |