Lines Matching refs:ntex
1640 struct r600_bytecode_tex *ntex = r600_bytecode_tex(); in r600_bytecode_add_tex() local
1643 if (ntex == NULL) in r600_bytecode_add_tex()
1645 memcpy(ntex, tex, sizeof(struct r600_bytecode_tex)); in r600_bytecode_add_tex()
1652 if (ttex->dst_gpr == ntex->src_gpr) { in r600_bytecode_add_tex()
1658 if (ntex->inst == SQ_TEX_INST_SET_GRADIENTS_H) in r600_bytecode_add_tex()
1668 free(ntex); in r600_bytecode_add_tex()
1673 if (ntex->src_gpr >= bc->ngpr) { in r600_bytecode_add_tex()
1674 bc->ngpr = ntex->src_gpr + 1; in r600_bytecode_add_tex()
1676 if (ntex->dst_gpr >= bc->ngpr) { in r600_bytecode_add_tex()
1677 bc->ngpr = ntex->dst_gpr + 1; in r600_bytecode_add_tex()
1679 LIST_ADDTAIL(&ntex->list, &bc->cf_last->tex); in r600_bytecode_add_tex()