diff options
author | Liam <[email protected]> | 2024-02-23 22:38:21 -0500 |
---|---|---|
committer | Liam <[email protected]> | 2024-02-26 11:16:14 -0500 |
commit | d66ca8b73145c9e891415f11ce68125ff2b99b9b (patch) | |
tree | 70c4d8b3e8aa80222940fe6e490d62bf42bc0443 /src/video_core/gpu.h | |
parent | f9bfdb15559c7ce447151162af61cc69efcbec01 (diff) | |
download | yuzu-mainline-d66ca8b73145c9e891415f11ce68125ff2b99b9b.tar.gz yuzu-mainline-d66ca8b73145c9e891415f11ce68125ff2b99b9b.zip |
video_core: make gpu context aware of rendering program
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r-- | src/video_core/gpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index ad535512c..50014e51f 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -149,7 +149,7 @@ public: std::shared_ptr<Control::ChannelState> AllocateChannel(); - void InitChannel(Control::ChannelState& to_init); + void InitChannel(Control::ChannelState& to_init, u64 program_id); void BindChannel(s32 channel_id); |