summaryrefslogtreecommitdiff
path: root/src/video_core/command_classes
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/command_classes')
-rw-r--r--src/video_core/command_classes/vic.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/video_core/command_classes/vic.cpp b/src/video_core/command_classes/vic.cpp
index 3f2712a8d..51f739801 100644
--- a/src/video_core/command_classes/vic.cpp
+++ b/src/video_core/command_classes/vic.cpp
@@ -85,6 +85,15 @@ void Vic::Execute() {
85 if (!frame) { 85 if (!frame) {
86 return; 86 return;
87 } 87 }
88 const u64 surface_width = config.surface_width_minus1 + 1;
89 const u64 surface_height = config.surface_height_minus1 + 1;
90 if (static_cast<u64>(frame->width) != surface_width ||
91 static_cast<u64>(frame->height) != surface_height) {
92 // TODO: Properly support multiple video streams with differing frame dimensions
93 LOG_WARNING(Debug, "Frame dimensions {}x{} do not match expected surface dimensions {}x{}",
94 frame->width, frame->height, surface_width, surface_height);
95 return;
96 }
88 switch (config.pixel_format) { 97 switch (config.pixel_format) {
89 case VideoPixelFormat::RGBA8: 98 case VideoPixelFormat::RGBA8:
90 case VideoPixelFormat::BGRA8: 99 case VideoPixelFormat::BGRA8: