From 94c70693f941484c40fae7c321ef9f3d866de684 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sat, 24 Mar 2018 00:45:24 -0400 Subject: maxwell: Add RenderTargetFormat enum. --- src/video_core/gpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/video_core/gpu.h') diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index 8183b12e9..ab24504a6 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -13,7 +13,7 @@ namespace Tegra { -enum class RenderTargetFormat { +enum class RenderTargetFormat : u32 { RGBA8_UNORM = 0xD5, }; -- cgit v1.2.3 From 666d53299c9cc61d88c0a4ed32cebd7cbbb5b712 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 25 Mar 2018 17:57:53 -0400 Subject: graphics_surface: Fix merge conflicts. --- src/video_core/gpu.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/video_core/gpu.h') 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, }; -- cgit v1.2.3