Home | History | Annotate | Download | only in common

Lines Matching refs:deInt8

331 		case TextureFormat::SNORM_INT8:			return de::max(-1.0f, (float)*((const deInt8*)value) / 127.0f);
338 case TextureFormat::SIGNED_INT8: return (float)*((const deInt8*)value);
361 case TextureFormat::SNORM_INT8: return (int)*((const deInt8*)value);
368 case TextureFormat::SIGNED_INT8: return (int)*((const deInt8*)value);
391 case TextureFormat::SNORM_INT8: *((deInt8*)dst) = convertSatRte<deInt8> (src * 127.0f); break;
398 case TextureFormat::SIGNED_INT8: *((deInt8*)dst) = convertSatRte<deInt8> (src); break;
448 case TextureFormat::SNORM_INT8: *((deInt8*)dst) = convertSat<deInt8> (src); break;
453 case TextureFormat::SIGNED_INT8: *((deInt8*)dst) = convertSat<deInt8> (src); break;