summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/const_buffer_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/engines/const_buffer_info.h')
-rw-r--r--src/video_core/engines/const_buffer_info.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/video_core/engines/const_buffer_info.h b/src/video_core/engines/const_buffer_info.h
new file mode 100644
index 000000000..d8f672462
--- /dev/null
+++ b/src/video_core/engines/const_buffer_info.h
@@ -0,0 +1,17 @@
+// Copyright 2019 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "common/common_types.h"
+
+namespace Tegra::Engines {
+
+struct ConstBufferInfo {
+ GPUVAddr address;
+ u32 size;
+ bool enabled;
+};
+
+} // namespace Tegra::Engines