Lines Matching refs:ntex
1393 struct r600_bytecode_tex *ntex = r600_bytecode_tex(); in r600_bytecode_add_tex() local
1396 if (!ntex) in r600_bytecode_add_tex()
1398 memcpy(ntex, tex, sizeof(struct r600_bytecode_tex)); in r600_bytecode_add_tex()
1411 if (ttex->dst_gpr == ntex->src_gpr) { in r600_bytecode_add_tex()
1417 if (ntex->op == FETCH_OP_SET_GRADIENTS_H) in r600_bytecode_add_tex()
1427 free(ntex); in r600_bytecode_add_tex()
1432 if (ntex->src_gpr >= bc->ngpr) { in r600_bytecode_add_tex()
1433 bc->ngpr = ntex->src_gpr + 1; in r600_bytecode_add_tex()
1435 if (ntex->dst_gpr >= bc->ngpr) { in r600_bytecode_add_tex()
1436 bc->ngpr = ntex->dst_gpr + 1; in r600_bytecode_add_tex()
1438 LIST_ADDTAIL(&ntex->list, &bc->cf_last->tex); in r600_bytecode_add_tex()