diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-09-15 11:48:54 -0400 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-09-19 11:41:27 -0400 |
commit | ba02d564f8a0b0167b96f247b6ad9d2bde05b6c8 (patch) | |
tree | 015edafb7deacabf4fea3c547534bb00ed60781f /src/video_core/rasterizer_interface.h | |
parent | b31880dc5e0d9aab1171d3476453ad2db00cfd3a (diff) |
Video Core: initial Implementation of InstanceDraw Packaging
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r-- | src/video_core/rasterizer_interface.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 6b3f2d50a1..a37b84b8cb 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) {} |