summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_download_area.h
blob: 771ce903dae4ea73cf2707d7da59eeac7217592c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "common/common_types.h"

namespace VideoCore {

struct RasterizerDownloadArea {
    VAddr start_address;
    VAddr end_address;
    bool preemtive;
};

} // namespace VideoCore