mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 07:08:16 -05:00
Video Core: initial Implementation of InstanceDraw Packaging
This commit is contained in:
committed by
FernandoS27
parent
b31880dc5e
commit
ba02d564f8
@ -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) {}
|
||||
|
||||
|
Reference in New Issue
Block a user