summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/draw_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/engines/draw_manager.h')
-rw-r--r--src/video_core/engines/draw_manager.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_core/engines/draw_manager.h b/src/video_core/engines/draw_manager.h
index 0cdb37f83..437990162 100644
--- a/src/video_core/engines/draw_manager.h
+++ b/src/video_core/engines/draw_manager.h
@@ -33,7 +33,10 @@ public:
};
struct IndirectParams {
- GPUVAddr start_address;
+ bool is_indexed;
+ bool include_count;
+ GPUVAddr count_start_address;
+ GPUVAddr indirect_start_address;
size_t buffer_size;
size_t max_draw_counts;
size_t stride;