Home | History | Annotate | Download | only in common

Lines Matching refs:deInt8

265 		case TextureFormat::SNORM_INT8:			return de::max(-1.0f, (float)*((const deInt8*)value) / 127.0f);
271 case TextureFormat::SIGNED_INT8: return (float)*((const deInt8*)value);
289 case TextureFormat::SNORM_INT8: return (int)*((const deInt8*)value);
295 case TextureFormat::SIGNED_INT8: return (int)*((const deInt8*)value);
313 case TextureFormat::SNORM_INT8: *((deInt8*)dst) = convertSatRte<deInt8> (src * 127.0f); break;
319 case TextureFormat::SIGNED_INT8: *((deInt8*)dst) = convertSatRte<deInt8> (src); break;
350 case TextureFormat::SNORM_INT8: *((deInt8*)dst) = convertSat<deInt8> (src); break;
354 case TextureFormat::SIGNED_INT8: *((deInt8*)dst) = convertSat<deInt8> (src); break;