Home
last modified time | relevance | path

Searched refs:emit_op1 (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/main/
Dffvertex_prog.c619 #define emit_op1(p, op, dst, mask, src0) \ macro
630 emit_op1(p, OPCODE_MOV, temp, 0, reg); in make_temp()
695 emit_op1(p, OPCODE_RSQ, tmp, WRITEMASK_X, tmp); in emit_normalize_vec3()
706 emit_op1(p, OPCODE_MOV, out, 0, register_input(p, input)); in emit_passthrough()
949 emit_op1(p, OPCODE_ABS, spot, 0, spot); in calculate_light_attenuation()
965 emit_op1(p, OPCODE_RCP, dist, WRITEMASK_YZ, dist); in calculate_light_attenuation()
973 emit_op1(p, OPCODE_RCP, dist, 0, dist); in calculate_light_attenuation()
979 emit_op1(p, OPCODE_RCP, att, 0, dist); in calculate_light_attenuation()
1046 emit_op1(p, OPCODE_MOV, dots, WRITEMASK_W, swizzle1(shininess,X)); in build_lighting()
1063 emit_op1(p, OPCODE_MOV, dots, WRITEMASK_Z, in build_lighting()
[all …]
/external/virglrenderer/src/
Dvrend_shader.c2033 #define emit_op1(op) emit_buff(&ctx->glsl_strbufs, "%s = %s(%s(%s(%s))%s);\n", dsts[0], get_string(… macro
4889 emit_op1("abs"); in iter_instruction()
4919 emit_op1("exp2"); in iter_instruction()
4922 emit_op1("log2"); in iter_instruction()
4931 emit_op1("cos"); in iter_instruction()
4934 emit_op1("sin"); in iter_instruction()
4941 emit_op1("dFdx"); in iter_instruction()
4944 emit_op1("dFdy"); in iter_instruction()
4948 emit_op1("dFdxFine"); in iter_instruction()
4952 emit_op1("dFdyFine"); in iter_instruction()
[all …]
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_insn.c350 emit_op1(struct svga_shader_emitter *emit, in emit_op1() function
476 if (!emit_op1( emit, inst_token( SVGA3DOP_MOV ), dst, *src0 )) in emit_repl()
508 return emit_op1( emit, inst, dest, src0 ); in submit_op1()