diff options
author | bunnei <bunneidev@gmail.com> | 2018-04-17 22:17:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-17 22:17:07 -0400 |
commit | c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca (patch) | |
tree | c9843ee4078d8d1180c92d033fad123d28c6a1a0 /src/video_core/gpu.h | |
parent | 71b4a3b9f6894536d1a64265d5eb52a15be2094d (diff) | |
parent | 7222d9a4c3aa23f16909a7094b3ef2826bafa58f (diff) |
Merge pull request #346 from bunnei/misc-gpu-improvements
Misc gpu improvements
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r-- | src/video_core/gpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index 71a8661b4..2888daedc 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -15,7 +15,10 @@ namespace Tegra { enum class RenderTargetFormat : u32 { NONE = 0x0, + RGBA16_FLOAT = 0xCA, + RGB10_A2_UNORM = 0xD1, RGBA8_UNORM = 0xD5, + RGBA8_SRGB = 0xD6, }; class DebugContext; |