Commit 250ae902 by Qiankun Miao Committed by Commit Bot

Remove unused function getInterpolationString

BUG= Change-Id: I4135f4ae939043efa8ccab65ef1a5eb441370828 Reviewed-on: https://chromium-review.googlesource.com/401673Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
parent cf255eac
......@@ -528,18 +528,4 @@ inline const char* getBlockStorageString(TLayoutBlockStorage bsq)
}
}
inline const char* getInterpolationString(TQualifier q)
{
switch(q)
{
case EvqSmoothOut: return "smooth";
case EvqCentroidOut: return "smooth centroid";
case EvqFlatOut: return "flat";
case EvqSmoothIn: return "smooth";
case EvqCentroidIn: return "smooth centroid";
case EvqFlatIn: return "flat";
default: UNREACHABLE(); return "unknown interpolation";
}
}
#endif // COMPILER_TRANSLATOR_BASETYPES_H_
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment