Home | History | Annotate | Download | only in common

Lines Matching refs:SNORM_INT16

216 		case TextureFormat::SNORM_INT16:		return 2;
266 case TextureFormat::SNORM_INT16: return de::max(-1.0f, (float)*((const deInt16*)value) / 32767.0f);
290 case TextureFormat::SNORM_INT16: return (int)*((const deInt16*)value);
314 case TextureFormat::SNORM_INT16: *((deInt16*)dst) = convertSatRte<deInt16> (src * 32767.0f); break;
351 case TextureFormat::SNORM_INT16: *((deInt16*)dst) = convertSat<deInt16> (src); break;
503 case SNORM_INT16: channelSize = 2; break;
3610 case TextureFormat::SNORM_INT16: return str << "SNORM_INT16";