From ba02d564f8a0b0167b96f247b6ad9d2bde05b6c8 Mon Sep 17 00:00:00 2001 From: Fernando Sahmkow Date: Sun, 15 Sep 2019 11:48:54 -0400 Subject: Video Core: initial Implementation of InstanceDraw Packaging --- src/video_core/rasterizer_interface.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/video_core/rasterizer_interface.h') diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 6b3f2d50a..a37b84b8c 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h @@ -31,6 +31,9 @@ public: /// Draw the current batch of vertex arrays virtual void DrawArrays() = 0; + /// Draw the current batch of vertex arrays + virtual void DrawMultiArrays() = 0; + /// Clear the current framebuffer virtual void Clear() = 0; @@ -73,6 +76,10 @@ public: return false; } + virtual bool AccelerateDrawMultiBatch(bool is_indexed) { + return false; + } + /// Increase/decrease the number of object in pages touching the specified region virtual void UpdatePagesCachedCount(VAddr addr, u64 size, int delta) {} -- cgit v1.2.3