Lines Matching defs:version
442 /* shader version */
446 } version;
1013 (param->file == D3DSPR_INPUT && tx->version.major == 3));
1030 if (tx->version.major < 2 && tx->version.minor < 2)
1036 if (tx->version.major < 2 && tx->version.minor < 4) {
1049 if (tx->version.major < 3) {
1109 if (!IS_VS && tx->version.major < 2) {
1298 if (tx->version.major < 2 && !IS_VS) {
1338 if (tx->version.major < 3) {
1354 if (!IS_VS && tx->version.major < 3 && param->idx == 0) {
1362 if (IS_VS && tx->version.major < 3)
1744 if (tx->insn.coissue && tx->version.major == 1 && tx->version.minor < 4 && tx->insn.dst[0].mask != NINED3DSP_WRITEMASK_3) {
1753 if (tx->version.major == 1 && tx->version.minor < 4)
2258 if (tx->version.major >= 3)
2286 if (tx->version.major >= 3) {
2308 if (is_input && tx->version.major >= 3) {
2524 if (tx->version.major > 1 || tx->version.minor > 3) {
2530 if (tx->version.major < 2)
2547 assert(tx->version.major == 1);
3200 const unsigned version = (tx->version.major << 8) | tx->version.minor;
3209 if (inst_table[i].vert_version.min <= version &&
3210 inst_table[i].vert_version.max >= version)
3216 if (inst_table[i].frag_version.min <= version &&
3217 inst_table[i].frag_version.max >= version)
3273 tx->version.major = D3DSHADER_VERSION_MAJOR(tok);
3274 tx->version.minor = D3DSHADER_VERSION_MINOR(tok);
3292 if (tx->version.major >= 2) {
3333 if (tx->version.major < 2)
3494 /* check version */
3498 unsigned ver = (tx->version.major << 8) | tx->version.minor;
3500 DBG("opcode not supported in this shader version: %x <= %x <= %x\n",
3613 info->version = (tx->version.major << 4) | tx->version.minor;
3635 } else if (tx->version.major < 2) {/* IS_PS v1 */
3637 } else if (tx->version.major == 2) {/* IS_PS v2 */
3643 if (tx->version.major < 2) {
3652 /* TODO: The values tx->version.major == 1 */
3797 if (IS_PS && tx->version.major < 3) {
3798 if (tx->version.major < 2) {
3807 if (IS_VS && tx->version.major < 3 && ureg_dst_is_undef(tx->regs.oFog) && info->fog_enable) {
3967 if (((tx->version.major << 16) | tx->version.minor) > 0x00030000) {
3969 DBG("Unsupported shader version: %u.%u !\n",
3970 tx->version.major, tx->version.minor);
3979 tx->version.major, tx->version.minor);