summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video_core/gpu.h1
-rw-r--r--src/yuzu/debugger/graphics/graphics_surface.cpp6
2 files changed, 4 insertions, 3 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index ab24504a6..71a8661b4 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -14,6 +14,7 @@
namespace Tegra {
enum class RenderTargetFormat : u32 {
+ NONE = 0x0,
RGBA8_UNORM = 0xD5,
};
diff --git a/src/yuzu/debugger/graphics/graphics_surface.cpp b/src/yuzu/debugger/graphics/graphics_surface.cpp
index 8e6509adc..7ea08c23f 100644
--- a/src/yuzu/debugger/graphics/graphics_surface.cpp
+++ b/src/yuzu/debugger/graphics/graphics_surface.cpp
@@ -339,9 +339,9 @@ void GraphicsSurfaceWidget::OnUpdate() {
static_cast<size_t>(Source::RenderTarget0)];
surface_address = rt.Address();
- surface_width = rt.horiz;
- surface_height = rt.vert;
- if (rt.format != 0) {
+ surface_width = rt.width;
+ surface_height = rt.height;
+ if (rt.format != Tegra::RenderTargetFormat::NONE) {
surface_format =
ConvertToTextureFormat(static_cast<Tegra::RenderTargetFormat>(rt.format));
}