Home
last modified time | relevance | path

Searched refs:emitCast (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DOutputASM.h272 Instruction *emitCast(TIntermTyped *dst, TIntermTyped *src);
273 Instruction *emitCast(TIntermTyped *dst, int dstIndex, TIntermTyped *src, int srcIndex);
DOutputASM.cpp1505 Instruction *mov = emitCast(result, arrayIndex, argi, 0); in visitAggregate()
1513 Instruction *mov = emitCast(result, arrayIndex, argi, 0); in visitAggregate()
1520 Instruction *mov = emitCast(result, arrayIndex, argi, 1); in visitAggregate()
1534 Instruction *mov = emitCast(result, arrayIndex, argi, column); in visitAggregate()
1565 Instruction *mov = emitCast(result, i, arg0, 0); in visitAggregate()
1586 emitCast(result, i + n * outCols, &col, 0); in visitAggregate()
1591 Instruction *mov = emitCast(result, i + n * outCols, argi, i); in visitAggregate()
1610 Instruction *mov = emitCast(result, column, argi, 0); in visitAggregate()
2081 Instruction *OutputASM::emitCast(TIntermTyped *dst, TIntermTyped *src) in emitCast() function in glsl::OutputASM
2083 return emitCast(dst, 0, src, 0); in emitCast()
[all …]