| 26 | case PacDXT5: |
| 27 | return true; |
| 28 | default: |
| 29 | return false; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | } // namespace |
| 34 | |
| 35 | PacFormat UploadFormatForTextureGL33(PacFormat format, bool interpolate) |
| 36 | { |
| 37 | if (interpolate && IsCompressedInterpolationFormat(format)) |
| 38 | return PacARGB1555; |
| 39 | return format; |
| 40 | } |
nothing calls this directly
no test coverage detected