summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2022-03-15 00:11:41 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2022-03-15 00:18:36 +0100
commit5119a5761429477079491795d5d9d1bd335f7b0b (patch)
tree2a2ba54451fb35260c1e0e797a3bbc5b96fe3316 /src/video_core/engines/maxwell_3d.h
parentMerge pull request #8016 from merryhime/kill-mem-use (diff)
downloadyuzu-5119a5761429477079491795d5d9d1bd335f7b0b.tar
yuzu-5119a5761429477079491795d5d9d1bd335f7b0b.tar.gz
yuzu-5119a5761429477079491795d5d9d1bd335f7b0b.tar.bz2
yuzu-5119a5761429477079491795d5d9d1bd335f7b0b.tar.lz
yuzu-5119a5761429477079491795d5d9d1bd335f7b0b.tar.xz
yuzu-5119a5761429477079491795d5d9d1bd335f7b0b.tar.zst
yuzu-5119a5761429477079491795d5d9d1bd335f7b0b.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/maxwell_3d.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index dc9df6c8b..38d9b6660 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1520,10 +1520,8 @@ private:
void ProcessSyncPoint();
/// Handles a write to the CB_DATA[i] register.
- void StartCBData(u32 method);
void ProcessCBData(u32 value);
- void ProcessCBMultiData(u32 method, const u32* start_base, u32 amount);
- void FinishCBData();
+ void ProcessCBMultiData(const u32* start_base, u32 amount);
/// Handles a write to the CB_BIND register.
void ProcessCBBind(size_t stage_index);
@@ -1555,17 +1553,6 @@ private:
/// Interpreter for the macro codes uploaded to the GPU.
std::unique_ptr<MacroEngine> macro_engine;
- static constexpr u32 null_cb_data = 0xFFFFFFFF;
- struct CBDataState {
- static constexpr size_t inline_size = 0x4000;
- std::array<std::array<u32, inline_size>, 16> buffer;
- u32 current{null_cb_data};
- u32 id{null_cb_data};
- u32 start_pos{};
- u32 counter{};
- };
- CBDataState cb_data_state;
-
Upload::State upload_state;
bool execute_on{true};