From 3f9262195b1ab4828d93f661e1b0dedacb01f937 Mon Sep 17 00:00:00 2001 From: Fernando Sahmkow Date: Sun, 27 Oct 2019 16:44:09 -0400 Subject: Video_Core: Implement texture format E5B9G9R9_SHAREDEXP. This commit implements the E5B9G9R9 Texture format into the general system and OpenGL backend. --- src/video_core/morton.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/video_core/morton.cpp') diff --git a/src/video_core/morton.cpp b/src/video_core/morton.cpp index fe5f08ace..2f2fe6859 100644 --- a/src/video_core/morton.cpp +++ b/src/video_core/morton.cpp @@ -112,6 +112,7 @@ static constexpr ConversionArray morton_to_linear_fns = { MortonCopy, MortonCopy, MortonCopy, + MortonCopy, MortonCopy, MortonCopy, MortonCopy, @@ -192,6 +193,7 @@ static constexpr ConversionArray linear_to_morton_fns = { nullptr, nullptr, nullptr, + MortonCopy, MortonCopy, MortonCopy, MortonCopy, -- cgit v1.2.3