Browse Source
Merge pull request #3110 from greggameplayer/CompleteRGBA16UI
Complete the implementation of RGBA16UI
pull/15/merge
Rodrigo Locatti
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
src/video_core/surface.cpp
|
|
|
@ -249,6 +249,8 @@ PixelFormat PixelFormatFromTextureFormat(Tegra::Texture::TextureFormat format, |
|
|
|
return PixelFormat::RGBA16U; |
|
|
|
case Tegra::Texture::ComponentType::FLOAT: |
|
|
|
return PixelFormat::RGBA16F; |
|
|
|
case Tegra::Texture::ComponentType::UINT: |
|
|
|
return PixelFormat::RGBA16UI; |
|
|
|
default: |
|
|
|
break; |
|
|
|
} |
|
|
|
|