summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorFengChen <vonchenplus@gmail.com>2022-11-21 16:38:37 +0100
committerFeng Chen <vonchenplus@gmail.com>2022-11-22 10:53:26 +0100
commit1d57851fc7b522aa8ec9b07fe398a1361fdfad25 (patch)
tree72866c1913a3f1be0c0ac26af12e08e77c384b85 /src/video_core/engines/maxwell_3d.h
parentMerge pull request #9279 from liamwhite/this-would-have-never-happened-in-rust (diff)
downloadyuzu-1d57851fc7b522aa8ec9b07fe398a1361fdfad25.tar
yuzu-1d57851fc7b522aa8ec9b07fe398a1361fdfad25.tar.gz
yuzu-1d57851fc7b522aa8ec9b07fe398a1361fdfad25.tar.bz2
yuzu-1d57851fc7b522aa8ec9b07fe398a1361fdfad25.tar.lz
yuzu-1d57851fc7b522aa8ec9b07fe398a1361fdfad25.tar.xz
yuzu-1d57851fc7b522aa8ec9b07fe398a1361fdfad25.tar.zst
yuzu-1d57851fc7b522aa8ec9b07fe398a1361fdfad25.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/maxwell_3d.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index c3099f9a6..84c497ebd 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -3148,10 +3148,12 @@ private:
/// Handles use of topology overrides (e.g., to avoid using a topology assigned from a macro)
void ProcessTopologyOverride();
- void ProcessDraw(u32 instance_count = 1);
-
+ /// Handles deferred draw(e.g., instance draw).
void ProcessDeferredDraw();
+ /// Handles a draw.
+ void ProcessDraw(u32 instance_count = 1);
+
/// Returns a query's value or an empty object if the value will be deferred through a cache.
std::optional<u64> GetQueryResult();
@@ -3178,6 +3180,8 @@ private:
std::array<bool, Regs::NUM_REGS> draw_command{};
std::vector<u32> deferred_draw_method;
+ enum class DrawMode : u32 { General = 0, Instance, InlineIndex };
+ DrawMode draw_mode{DrawMode::General};
};
#define ASSERT_REG_POSITION(field_name, position) \