SWDEV-474989 - Fix texture filter test issues

Change-Id: I9b647aff79ba92f07b2ca18eac49d58ae63fa859
This commit is contained in:
taosang2
2024-07-30 09:35:04 -04:00
کامیت شده توسط Tao Sang
والد a7dd22f97f
کامیت 8a9ed34f6a
38فایلهای تغییر یافته به همراه488 افزوده شده و 645 حذف شده
@@ -148,7 +148,7 @@ hipFabs(const T &t) {
}
template<typename T, hipTextureFilterMode fMode = hipFilterModePoint, bool sRGB = false>
bool hipTextureSamplingVerify(T outputData, T expected) {
bool hipTextureSamplingVerify(const T &outputData, const T &expected) {
bool testResult = false;
if (fMode == hipFilterModePoint && !sRGB) {
testResult = outputData == expected;