From 42085ff110ec6bf09d8823aa28c2047f7df9bbca Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Tue, 5 Mar 2019 10:15:03 -0500
Subject: [PATCH] video_core/surface: Remove obsolete TODO in
 PixelFormatFromRenderTargetFormat()

This isn't needed anymore, according to Hexagon
---
 src/video_core/surface.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/video_core/surface.cpp b/src/video_core/surface.cpp
index 044ba116ad..a7ac26d715 100644
--- a/src/video_core/surface.cpp
+++ b/src/video_core/surface.cpp
@@ -89,8 +89,6 @@ PixelFormat PixelFormatFromDepthFormat(Tegra::DepthFormat format) {
 
 PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format) {
     switch (format) {
-        // TODO (Hexagon12): Converting SRGBA to RGBA is a hack and doesn't completely correct the
-        // gamma.
     case Tegra::RenderTargetFormat::RGBA8_SRGB:
         return PixelFormat::RGBA8_SRGB;
     case Tegra::RenderTargetFormat::RGBA8_UNORM:
-- 
GitLab