/third_party/mesa3d/src/mesa/main/ |
H A D | ffvertex_prog.c | 677 emit_op2(p, OPCODE_MUL, tmp, 0, swizzle1(src,X), mat[0]); in emit_transpose_matrix_transform_vec4() 705 emit_op2(p, OPCODE_MUL, dest, 0, src, swizzle1(tmp, X)); in emit_normalize_vec3() 814 emit_op2( p, OPCODE_MUL, transformed_normal, 0, normal, rescale ); in get_transformed_normal() 971 emit_op2(p, OPCODE_MUL, att, 0, slt, spot); in calculate_light_attenuation() 991 emit_op2(p, OPCODE_MUL, dist, WRITEMASK_XZ, dist, swizzle1(dist,Y)); in calculate_light_attenuation() 999 emit_op2(p, OPCODE_MUL, att, 0, dist, att); in calculate_light_attenuation() 1200 emit_op2(p, OPCODE_MUL, VPpli, 0, VPpli, dist); in build_lighting() 1246 emit_op2(p, OPCODE_MUL, tmp, 0, lightprod_front[i][j], material_value); in build_lighting() 1281 emit_op2(p, OPCODE_MUL, lit, 0, lit, att); in build_lighting() 1313 emit_op2(p, OPCODE_MUL, tm in build_lighting() [all...] |
/third_party/mesa3d/src/mesa/program/ |
H A D | programopt.c | 153 * emit_op2(p, OPCODE_MUL, tmp, 0, swizzle1(src,X), mat[0]); in insert_mvp_mad_code() 160 newInst[0].Opcode = OPCODE_MUL; in insert_mvp_mad_code() 339 inst->Opcode = OPCODE_MUL; in _mesa_append_fog_code() 353 inst->Opcode = OPCODE_MUL; in _mesa_append_fog_code()
|
H A D | prog_instruction.h | 151 OPCODE_MUL, /* X X X X X */ enumerator
|
H A D | prog_instruction.c | 132 { OPCODE_MUL, "MUL", 2, 1 },
|
H A D | prog_to_nir.c | 654 [OPCODE_MUL] = nir_op_fmul,
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | OutputASM.cpp | 609 case sw::Shader::OPCODE_MUL: in getOpcode() 743 emit(sw::Shader::OPCODE_MUL, result, i, left, i, right); in visitBinary() 776 Instruction *mul = emit(sw::Shader::OPCODE_MUL, result, i, left, 0, right, i); in visitBinary() 830 case EOpMulAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_MUL, result), result, left, left, right); break; in visitBinary() 831 case EOpMul: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_MUL, result), result, left, right); break; in visitBinary() 876 case EOpVectorTimesScalarAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_MUL, left), result, left, left, right); break; in visitBinary() 877 case EOpVectorTimesScalar: if(visit == PostVisit) emit(getOpcode(sw::Shader::OPCODE_MUL, left), result, left, right); break; in visitBinary() 885 emit(sw::Shader::OPCODE_MUL, result, i, left, i, right, 0); in visitBinary() 892 emit(sw::Shader::OPCODE_MUL, result, i, left, 0, right, i); in visitBinary() 914 Instruction *mul = emit(sw::Shader::OPCODE_MUL, resul in visitBinary() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | Shader.hpp | 44 OPCODE_MUL, enumerator
|
H A D | PixelShader.cpp | 619 case Shader::OPCODE_MUL: in analyzeInterpolants()
|
H A D | Shader.cpp | 776 case OPCODE_MUL: return "mul"; in operationString()
|
H A D | VertexProgram.cpp | 250 case Shader::OPCODE_MUL: mul(d, s0, s1); break; in program()
|
H A D | PixelPipeline.cpp | 124 case Shader::OPCODE_MUL: MUL(d, s0, s1); break; in applyShader()
|
H A D | PixelProgram.cpp | 207 case Shader::OPCODE_MUL: mul(d, s0, s1); break; in applyShader()
|