diff options
| author | 2022-12-08 23:19:31 +0800 | |
|---|---|---|
| committer | 2022-12-08 23:19:31 +0800 | |
| commit | 37014e9127b589bc37d4befddc67282567e25542 (patch) | |
| tree | 601b05367d2e7c80b3482d6e4d7a05ec7a10e5a5 | |
| parent | video_core: The draw manager manages whether Clear is required. (diff) | |
| download | yuzu-37014e9127b589bc37d4befddc67282567e25542.tar.gz yuzu-37014e9127b589bc37d4befddc67282567e25542.tar.xz yuzu-37014e9127b589bc37d4befddc67282567e25542.zip | |
video_core: Add vertex_array_instance_* sbubbed called warning
Diffstat (limited to '')
| -rw-r--r-- | src/video_core/engines/draw_manager.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/engines/draw_manager.cpp b/src/video_core/engines/draw_manager.cpp index 49a16266e..ef7c5666b 100644 --- a/src/video_core/engines/draw_manager.cpp +++ b/src/video_core/engines/draw_manager.cpp | |||
| @@ -46,6 +46,11 @@ void DrawManager::ProcessMethodCall(u32 method, u32 argument) { | |||
| 46 | SetInlineIndexBuffer(regs.inline_index_4x8.index2); | 46 | SetInlineIndexBuffer(regs.inline_index_4x8.index2); |
| 47 | SetInlineIndexBuffer(regs.inline_index_4x8.index3); | 47 | SetInlineIndexBuffer(regs.inline_index_4x8.index3); |
| 48 | break; | 48 | break; |
| 49 | case MAXWELL3D_REG_INDEX(vertex_array_instance_first): | ||
| 50 | case MAXWELL3D_REG_INDEX(vertex_array_instance_subsequent): { | ||
| 51 | LOG_WARNING(HW_GPU, "(STUBBED) called"); | ||
| 52 | break; | ||
| 53 | } | ||
| 49 | default: | 54 | default: |
| 50 | break; | 55 | break; |
| 51 | } | 56 | } |