Lines Matching refs:channelClass
1581 const tcu::TextureChannelClass channelClass = getTextureChannelClass(format.type); in getTextureBorderColorFloat() local
1583 const bool isFloat = channelClass == tcu::TEXTURECHANNELCLASS_FLOATING_POINT; in getTextureBorderColorFloat()
1584 const bool isSigned = channelClass != tcu::TEXTURECHANNELCLASS_UNSIGNED_FIXED_POINT; in getTextureBorderColorFloat()
1589 DE_ASSERT(channelClass == tcu::TEXTURECHANNELCLASS_FLOATING_POINT || in getTextureBorderColorFloat()
1590 channelClass == tcu::TEXTURECHANNELCLASS_SIGNED_FIXED_POINT || in getTextureBorderColorFloat()
1591 channelClass == tcu::TEXTURECHANNELCLASS_UNSIGNED_FIXED_POINT); in getTextureBorderColorFloat()
1617 const tcu::TextureChannelClass channelClass = getTextureChannelClass(format.type); in getTextureBorderColorInt() local
1624 DE_ASSERT(channelClass == tcu::TEXTURECHANNELCLASS_SIGNED_INTEGER); in getTextureBorderColorInt()
1625 DE_UNREF(channelClass); in getTextureBorderColorInt()
1646 const tcu::TextureChannelClass channelClass = getTextureChannelClass(format.type); in getTextureBorderColorUint() local
1652 DE_ASSERT(channelClass == tcu::TEXTURECHANNELCLASS_UNSIGNED_INTEGER); in getTextureBorderColorUint()
1653 DE_UNREF(channelClass); in getTextureBorderColorUint()
1675 const tcu::TextureChannelClass channelClass = getTextureChannelClass(format.type); in sampleTextureBorder() local
1677 switch (channelClass) in sampleTextureBorder()