Lines Matching refs:storageFmt
1026 TextureFormat storageFmt; in texImage3D() local
1033 storageFmt = mapInternalFormat(internalFormat); in texImage3D()
1034 RC_IF_ERROR(storageFmt.order == TextureFormat::CHANNELORDER_LAST || in texImage3D()
1035 storageFmt.type == TextureFormat::CHANNELTYPE_LAST, GL_INVALID_ENUM, RC_RET_VOID); in texImage3D()
1055 RC_IF_ERROR(storageFmt != dst.getFormat() || in texImage3D()
1059 texture->allocLevel(level, storageFmt, width); in texImage3D()
1090 RC_IF_ERROR(storageFmt != dst.getFormat() || in texImage3D()
1095 texture->allocLevel(level, storageFmt, width, height); in texImage3D()
1132 RC_IF_ERROR(storageFmt != dst.getFormat() || in texImage3D()
1137 texture->allocFace(level, face, storageFmt, width, height); in texImage3D()
1170 RC_IF_ERROR(storageFmt != dst.getFormat() || in texImage3D()
1176 texture->allocLevel(level, storageFmt, width, height, depth); in texImage3D()
1209 RC_IF_ERROR(storageFmt != dst.getFormat() || in texImage3D()
1215 texture->allocLevel(level, storageFmt, width, height, depth); in texImage3D()
1249 RC_IF_ERROR(storageFmt != dst.getFormat() || in texImage3D()
1255 texture->allocLevel(level, storageFmt, width, height, depth); in texImage3D()
1427 TextureFormat storageFmt; in copyTexImage1D() local
1435 storageFmt = mapInternalFormat(internalFormat); in copyTexImage1D()
1436 RC_IF_ERROR(storageFmt.order == TextureFormat::CHANNELORDER_LAST || in copyTexImage1D()
1437 storageFmt.type == TextureFormat::CHANNELTYPE_LAST, GL_INVALID_ENUM, RC_RET_VOID); in copyTexImage1D()
1452 RC_IF_ERROR(storageFmt != dst.getFormat() || in copyTexImage1D()
1456 texture->allocLevel(level, storageFmt, width); in copyTexImage1D()
1475 TextureFormat storageFmt; in copyTexImage2D() local
1483 storageFmt = mapInternalFormat(internalFormat); in copyTexImage2D()
1484 RC_IF_ERROR(storageFmt.order == TextureFormat::CHANNELORDER_LAST || in copyTexImage2D()
1485 storageFmt.type == TextureFormat::CHANNELTYPE_LAST, GL_INVALID_ENUM, RC_RET_VOID); in copyTexImage2D()
1500 RC_IF_ERROR(storageFmt != dst.getFormat() || in copyTexImage2D()
1505 texture->allocLevel(level, storageFmt, width, height); in copyTexImage2D()
1537 RC_IF_ERROR(storageFmt != dst.getFormat() || in copyTexImage2D()
1542 texture->allocFace(level, face, storageFmt, width, height); in copyTexImage2D()
1660 TextureFormat storageFmt; in texStorage2D() local
1666 storageFmt = mapInternalFormat(internalFormat); in texStorage2D()
1667 RC_IF_ERROR(storageFmt.order == TextureFormat::CHANNELORDER_LAST || in texStorage2D()
1668 storageFmt.type == TextureFormat::CHANNELTYPE_LAST, GL_INVALID_ENUM, RC_RET_VOID); in texStorage2D()
1685 texture.allocLevel(level, storageFmt, levelW, levelH); in texStorage2D()
1704 texture.allocFace(level, (tcu::CubeFace)face, storageFmt, levelW, levelH); in texStorage2D()
1714 TextureFormat storageFmt; in texStorage3D() local
1720 storageFmt = mapInternalFormat(internalFormat); in texStorage3D()
1721 RC_IF_ERROR(storageFmt.order == TextureFormat::CHANNELORDER_LAST || in texStorage3D()
1722 storageFmt.type == TextureFormat::CHANNELTYPE_LAST, GL_INVALID_ENUM, RC_RET_VOID); in texStorage3D()
1741 texture.allocLevel(level, storageFmt, levelW, levelH, depth); in texStorage3D()
1762 texture.allocLevel(level, storageFmt, levelW, levelH, levelD); in texStorage3D()
1783 texture.allocLevel(level, storageFmt, levelW, levelH, depth); in texStorage3D()