Searched refs:emitCast (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | OutputASM.h | 272 Instruction *emitCast(TIntermTyped *dst, TIntermTyped *src); 273 Instruction *emitCast(TIntermTyped *dst, int dstIndex, TIntermTyped *src, int srcIndex);
|
D | OutputASM.cpp | 1512 Instruction *mov = emitCast(result, arrayIndex, argi, 0); in visitAggregate() 1520 Instruction *mov = emitCast(result, arrayIndex, argi, 0); in visitAggregate() 1527 Instruction *mov = emitCast(result, arrayIndex, argi, 1); in visitAggregate() 1541 Instruction *mov = emitCast(result, arrayIndex, argi, column); in visitAggregate() 1581 Instruction *mov = emitCast(result, i, arg0, 0); in visitAggregate() 1603 emitCast(result, i + n * outCols, &col, 0); in visitAggregate() 1608 Instruction *mov = emitCast(result, i + n * outCols, argi, i); in visitAggregate() 1627 Instruction *mov = emitCast(result, column, argi, 0); in visitAggregate() 2114 Instruction *OutputASM::emitCast(TIntermTyped *dst, TIntermTyped *src) in emitCast() function in glsl::OutputASM 2116 return emitCast(dst, 0, src, 0); in emitCast() [all …]
|