Lines Matching refs:ntex
1440 struct r600_bytecode_tex *ntex = r600_bytecode_tex(); in r600_bytecode_add_tex() local
1443 if (!ntex) in r600_bytecode_add_tex()
1445 memcpy(ntex, tex, sizeof(struct r600_bytecode_tex)); in r600_bytecode_add_tex()
1458 if (ttex->dst_gpr == ntex->src_gpr && in r600_bytecode_add_tex()
1466 if (ntex->op == FETCH_OP_SET_GRADIENTS_H) in r600_bytecode_add_tex()
1476 free(ntex); in r600_bytecode_add_tex()
1481 if (ntex->src_gpr >= bc->ngpr) { in r600_bytecode_add_tex()
1482 bc->ngpr = ntex->src_gpr + 1; in r600_bytecode_add_tex()
1484 if (ntex->dst_gpr >= bc->ngpr) { in r600_bytecode_add_tex()
1485 bc->ngpr = ntex->dst_gpr + 1; in r600_bytecode_add_tex()
1487 list_addtail(&ntex->list, &bc->cf_last->tex); in r600_bytecode_add_tex()