Lines Matching refs:cMin
242 float cMin = 0.0f; in getChannelValueRange() local
250 case TextureFormat::SNORM_INT32: cMin = -1.0f; cMax = 1.0f; break; in getChannelValueRange()
260 case TextureFormat::UNORM_INT_1010102_REV: cMin = 0.0f; cMax = 1.0f; break; in getChannelValueRange()
263 case TextureFormat::SIGNED_INT8: cMin = -128.0f; cMax = 127.0f; break; in getChannelValueRange()
264 case TextureFormat::SIGNED_INT16: cMin = -32768.0f; cMax = 32767.0f; break; in getChannelValueRange()
265 case TextureFormat::SIGNED_INT32: cMin = -2147483648.0f; cMax = 2147483647.0f; break; in getChannelValueRange()
266 case TextureFormat::UNSIGNED_INT8: cMin = 0.0f; cMax = 255.0f; break; in getChannelValueRange()
267 case TextureFormat::UNSIGNED_INT16: cMin = 0.0f; cMax = 65535.0f; break; in getChannelValueRange()
268 case TextureFormat::UNSIGNED_INT24: cMin = 0.0f; cMax = 16777215.0f; break; in getChannelValueRange()
269 case TextureFormat::UNSIGNED_INT32: cMin = 0.0f; cMax = 4294967295.f; break; in getChannelValueRange()
270 case TextureFormat::HALF_FLOAT: cMin = -1e3f; cMax = 1e3f; break; in getChannelValueRange()
271 case TextureFormat::FLOAT: cMin = -1e5f; cMax = 1e5f; break; in getChannelValueRange()
272 case TextureFormat::UNSIGNED_INT_11F_11F_10F_REV: cMin = 0.0f; cMax = 1e4f; break; in getChannelValueRange()
273 case TextureFormat::UNSIGNED_INT_999_E5_REV: cMin = 0.0f; cMax = 1e5f; break; in getChannelValueRange()
279 return Vec2(cMin, cMax); in getChannelValueRange()