summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-03-27 04:30:03 +0200
committerGitHub <noreply@github.com>2018-03-27 04:30:03 +0200
commitb4bf099793d8e9a065769c35bb4b8e20bf107549 (patch)
tree2a9adcdcc7b3947242f3d4717302dc29425e8b0d /src/video_core/gpu.h
parentMerge pull request #283 from Subv/tsc (diff)
parentrenderer_opengl: Use better naming for DrawScreens and DrawSingleScreen. (diff)
downloadyuzu-b4bf099793d8e9a065769c35bb4b8e20bf107549.tar
yuzu-b4bf099793d8e9a065769c35bb4b8e20bf107549.tar.gz
yuzu-b4bf099793d8e9a065769c35bb4b8e20bf107549.tar.bz2
yuzu-b4bf099793d8e9a065769c35bb4b8e20bf107549.tar.lz
yuzu-b4bf099793d8e9a065769c35bb4b8e20bf107549.tar.xz
yuzu-b4bf099793d8e9a065769c35bb4b8e20bf107549.tar.zst
yuzu-b4bf099793d8e9a065769c35bb4b8e20bf107549.zip
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r--src/video_core/gpu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 8183b12e9..71a8661b4 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -13,7 +13,8 @@
namespace Tegra {
-enum class RenderTargetFormat {
+enum class RenderTargetFormat : u32 {
+ NONE = 0x0,
RGBA8_UNORM = 0xD5,
};