summaryrefslogblamecommitdiffstats
path: root/src/video_core/rasterizer_accelerated.h
blob: 315798e7c8e8c3a804129218ebb2371b9ce9bd9a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                            



                  




                                                                                     
                                                                






                                                                          
                           

                               


                        
// 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