Browse Source

Fix linux compile error.

nce_cpp
Fernando Sahmkow 7 years ago
committed by FernandoS27
parent
commit
e690d9e961
  1. 2
      src/video_core/renderer_opengl/gl_rasterizer_cache.h

2
src/video_core/renderer_opengl/gl_rasterizer_cache.h

@ -518,7 +518,7 @@ private:
Surface last_depth_buffer; Surface last_depth_buffer;
using SurfaceIntervalCache = boost::icl::interval_map<VAddr, Surface>; using SurfaceIntervalCache = boost::icl::interval_map<VAddr, Surface>;
using SurfaceInterval = typename IntervalCache::interval_type;
using SurfaceInterval = typename SurfaceIntervalCache::interval_type;
static auto GetReinterpretInterval(const Surface& object) { static auto GetReinterpretInterval(const Surface& object) {
return SurfaceInterval::right_open(object->GetAddr() + 1, return SurfaceInterval::right_open(object->GetAddr() + 1,

Loading…
Cancel
Save