Lines Matching refs:ntex
1435 struct r600_bytecode_tex *ntex = r600_bytecode_tex(); in r600_bytecode_add_tex() local
1438 if (!ntex) in r600_bytecode_add_tex()
1440 memcpy(ntex, tex, sizeof(struct r600_bytecode_tex)); in r600_bytecode_add_tex()
1453 if (ttex->dst_gpr == ntex->src_gpr && in r600_bytecode_add_tex()
1461 if (ntex->op == FETCH_OP_SET_GRADIENTS_H) in r600_bytecode_add_tex()
1471 free(ntex); in r600_bytecode_add_tex()
1476 if (ntex->src_gpr >= bc->ngpr) { in r600_bytecode_add_tex()
1477 bc->ngpr = ntex->src_gpr + 1; in r600_bytecode_add_tex()
1479 if (ntex->dst_gpr >= bc->ngpr) { in r600_bytecode_add_tex()
1480 bc->ngpr = ntex->dst_gpr + 1; in r600_bytecode_add_tex()
1482 list_addtail(&ntex->list, &bc->cf_last->tex); in r600_bytecode_add_tex()