Lines Matching refs:ntex
1407 struct r600_bytecode_tex *ntex = r600_bytecode_tex(); in r600_bytecode_add_tex() local
1410 if (!ntex) in r600_bytecode_add_tex()
1412 memcpy(ntex, tex, sizeof(struct r600_bytecode_tex)); in r600_bytecode_add_tex()
1425 if (ttex->dst_gpr == ntex->src_gpr) { in r600_bytecode_add_tex()
1431 if (ntex->op == FETCH_OP_SET_GRADIENTS_H) in r600_bytecode_add_tex()
1441 free(ntex); in r600_bytecode_add_tex()
1446 if (ntex->src_gpr >= bc->ngpr) { in r600_bytecode_add_tex()
1447 bc->ngpr = ntex->src_gpr + 1; in r600_bytecode_add_tex()
1449 if (ntex->dst_gpr >= bc->ngpr) { in r600_bytecode_add_tex()
1450 bc->ngpr = ntex->dst_gpr + 1; in r600_bytecode_add_tex()
1452 LIST_ADDTAIL(&ntex->list, &bc->cf_last->tex); in r600_bytecode_add_tex()