Lines Matching refs:hasSign
1419 inline deInt32 unquantize (deInt32 x, int mode, bool hasSign) in unquantize() argument
1421 if (hasSign) in unquantize()
1467 inline deInt16 finishUnquantize (deInt32 x, bool hasSign) in finishUnquantize() argument
1469 if (hasSign) in finishUnquantize()
1705 void decompressBc4 (const PixelBufferAccess& dst, const deUint8* src, bool hasSign) in decompressBc4() argument
1739 reds[0] = hasSign ? int8ToFloat(red0s) : uint8ToFloat(red0); in decompressBc4()
1740 reds[1] = hasSign ? int8ToFloat(red1s) : uint8ToFloat(red1); in decompressBc4()
1751 reds[6] = hasSign ? -1.0f : 0.0f; in decompressBc4()
1765 void decompressBc5 (const PixelBufferAccess& dst, const deUint8* src, bool hasSign) in decompressBc5() argument
1787 rg[c][0] = hasSign ? int8ToFloat(rg0s) : uint8ToFloat(rg0); in decompressBc5()
1788 rg[c][1] = hasSign ? int8ToFloat(rg1s) : uint8ToFloat(rg1); in decompressBc5()
1799 rg[c][6] = hasSign ? -1.0f : 0.0f; in decompressBc5()
1815 void decompressBc6H (const PixelBufferAccess& dst, const deUint8* src, bool hasSign) in decompressBc6H() argument
2140 if (hasSign) in decompressBc6H()
2160 if (hasSign) in decompressBc6H()
2172 r[i] = unquantize(r[i], mode, hasSign); in decompressBc6H()
2173 g[i] = unquantize(g[i], mode, hasSign); in decompressBc6H()
2174 b[i] = unquantize(b[i], mode, hasSign); in decompressBc6H()
2188 … = finishUnquantize(interpolate(endpointStartR, endpointEndR, colorIndex, colorIndexBC), hasSign); in decompressBc6H()
2189 … = finishUnquantize(interpolate(endpointStartG, endpointEndG, colorIndex, colorIndexBC), hasSign); in decompressBc6H()
2190 … = finishUnquantize(interpolate(endpointStartB, endpointEndB, colorIndex, colorIndexBC), hasSign); in decompressBc6H()