1 // Copyright 2019 yuzu Emulator Project
2 // Licensed under GPLv2 or any later version
3 // Refer to the license.txt file included.
4 
5 #pragma once
6 
7 #include "common/common_types.h"
8 
9 namespace Tegra::Engines {
10 
11 struct ConstBufferInfo {
12     GPUVAddr address;
13     u32 size;
14     bool enabled;
15 };
16 
17 } // namespace Tegra::Engines
18