Searched refs:temp_dst (Results 1 – 2 of 2) sorted by relevance
/external/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_tgsi.cpp | 1553 st_dst_reg temp_dst = st_dst_reg(temp); in visit_expression() local 1569 temp_dst.writemask = WRITEMASK_Y; in visit_expression() 1572 emit_asm(ir, TGSI_OPCODE_AND, temp_dst, temp1, temp2); in visit_expression() 1575 temp_dst.writemask = WRITEMASK_X; in visit_expression() 1578 emit_asm(ir, TGSI_OPCODE_AND, temp_dst, temp1, temp2); in visit_expression() 1579 temp_dst.writemask = WRITEMASK_Y; in visit_expression() 1582 emit_asm(ir, TGSI_OPCODE_AND, temp_dst, temp1, temp2); in visit_expression() 1624 st_dst_reg temp_dst = st_dst_reg(temp); in visit_expression() local 1632 temp_dst.writemask = WRITEMASK_Y; in visit_expression() 1635 emit_asm(ir, TGSI_OPCODE_OR, temp_dst, temp1, temp2); in visit_expression() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | mipmap.c | 2050 GLubyte *temp_src = NULL, *temp_dst = NULL; in generate_mipmap_compressed() local 2150 if (!temp_dst) { in generate_mipmap_compressed() 2151 temp_dst = malloc(temp_dst_img_stride * dstDepth); in generate_mipmap_compressed() 2152 if (!temp_dst) { in generate_mipmap_compressed() 2163 temp_dst_slices[i] = temp_dst + temp_dst_img_stride * i; in generate_mipmap_compressed() 2180 temp_dst, &ctx->DefaultPacking); in generate_mipmap_compressed() 2185 temp_src = temp_dst; in generate_mipmap_compressed() 2186 temp_dst = temp; in generate_mipmap_compressed() 2194 free(temp_dst); in generate_mipmap_compressed()
|