Răsfoiți Sursa

citra-qt: Always show pica framebuffers as RGBA8.

We actually don't really know yet how the format is encoded. Hence just use what works.
Tony Wasserka 11 ani în urmă
părinte
comite
e1144e364e
1 a modificat fișierele cu 2 adăugiri și 1 ștergeri
  1. 2 1
      src/citra_qt/debugger/graphics_framebuffer.cpp

+ 2 - 1
src/citra_qt/debugger/graphics_framebuffer.cpp

@@ -202,7 +202,8 @@ void GraphicsFramebufferWidget::OnUpdate()
         framebuffer_address = framebuffer.GetColorBufferPhysicalAddress();
         framebuffer_width = framebuffer.GetWidth();
         framebuffer_height = framebuffer.GetHeight();
-        framebuffer_format = static_cast<Format>(framebuffer.color_format);
+        // TODO: It's unknown how this format is actually specified
+        framebuffer_format = Format::RGBA8;
 
         break;
     }