Skip to content
Snippets Groups Projects
Commit e1144e36 authored by Tony Wasserka's avatar Tony Wasserka
Browse files

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.
parent 746fcf5a
No related branches found
No related tags found
No related merge requests found
...@@ -202,7 +202,8 @@ void GraphicsFramebufferWidget::OnUpdate() ...@@ -202,7 +202,8 @@ void GraphicsFramebufferWidget::OnUpdate()
framebuffer_address = framebuffer.GetColorBufferPhysicalAddress(); framebuffer_address = framebuffer.GetColorBufferPhysicalAddress();
framebuffer_width = framebuffer.GetWidth(); framebuffer_width = framebuffer.GetWidth();
framebuffer_height = framebuffer.GetHeight(); 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; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment