Video Core: initial Implementation of InstanceDraw Packaging

This commit is contained in:
Fernando Sahmkow 2019-09-15 11:48:54 -04:00 committed by FernandoS27
parent b31880dc5e
commit ba02d564f8
7 changed files with 192 additions and 11 deletions

View file

@ -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) {}