From d3786bc9b3cf798f7fbcbf07929128a65d3bb03f Mon Sep 17 00:00:00 2001 From: Vladislav Sytchenko Date: Fri, 20 Mar 2020 15:10:43 -0400 Subject: [PATCH] Modify formatting for textureReferences We don't program the numChannels and format members (these are HCC specific), so printing these will only display garbage. Change-Id: I83dc8be9a3cae2659c64f4594d07c05330d2dd14 [ROCm/clr commit: d662abaf55a9111d3d6e0849a2623c6d6f453b33] --- projects/clr/hipamd/vdi/hip_formatting.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/projects/clr/hipamd/vdi/hip_formatting.hpp b/projects/clr/hipamd/vdi/hip_formatting.hpp index 1e1c02b25f..d75c2071fc 100644 --- a/projects/clr/hipamd/vdi/hip_formatting.hpp +++ b/projects/clr/hipamd/vdi/hip_formatting.hpp @@ -712,10 +712,6 @@ inline std::ostream& operator<<(std::ostream& os, const textureReference& s) { << s.maxMipmapLevelClamp << ',' << s.textureObject - << ',' - << s.numChannels - << ',' - << s.format << '}'; return os; }