From 39558dc1b9eea76e8bab3c240068ebee70cd515f 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 --- vdi/hip_formatting.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vdi/hip_formatting.hpp b/vdi/hip_formatting.hpp index 1e1c02b25f..d75c2071fc 100644 --- a/vdi/hip_formatting.hpp +++ b/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; }