Fixed an illegal preprocessor issue.

This commit is contained in:
David Eberius
2022-09-02 11:25:56 -04:00
committed by Axel Kohlmeyer
parent 48b086b717
commit 51a4819bfc

View File

@ -134,7 +134,7 @@
int2 qt = tex1Dfetch(q_tex,i); \
ans=__hiloint2double(qt.y, qt.x); \
}
#elseif defined(__HIP_PLATFORM_SPIRV__)
#elif defined(__HIP_PLATFORM_SPIRV__)
#define fetch4(ans,i,pos_tex) tex1Dfetch(&ans, pos_tex, i);
#define fetch(ans,i,q_tex) tex1Dfetch(&ans, q_tex,i);
#else