536fc7f0ea
Amends a few interfaces to be able to handle the migration over to the new Memory class by passing the class by reference as a function parameter where necessary. Notably, within the filesystem services, this eliminates two ReadBlock() calls by using the helper functions of HLERequestContext to do that for us.
37 lines
865 B
C++
37 lines
865 B
C++
// Copyright 2019 yuzu Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <mutex>
|
|
|
|
#include <boost/icl/interval_map.hpp>
|
|
|
|
#include "common/common_types.h"
|
|
#include "video_core/rasterizer_interface.h"
|
|
|
|
namespace Memory {
|
|
class Memory;
|
|
}
|
|
|
|
namespace VideoCore {
|
|
|
|
/// Implements the shared part in GPU accelerated rasterizers in RasterizerInterface.
|
|
class RasterizerAccelerated : public RasterizerInterface {
|
|
public:
|
|
explicit RasterizerAccelerated(Memory::Memory& cpu_memory_);
|
|
~RasterizerAccelerated() override;
|
|
|
|
void UpdatePagesCachedCount(VAddr addr, u64 size, int delta) override;
|
|
|
|
private:
|
|
using CachedPageMap = boost::icl::interval_map<u64, int>;
|
|
CachedPageMap cached_pages;
|
|
std::mutex pages_mutex;
|
|
|
|
Memory::Memory& cpu_memory;
|
|
};
|
|
|
|
} // namespace VideoCore
|