Lines Matching refs:pSrc
163 @param[in] pOut 計算結果を受け取るバッファへのポインタ。pSrcと同じ行列を指していても構いません。
164 @param[in] pSrc 元となる行列へのポインタ。
169 MTX44TransposeC(MTX44* pOut, const MTX44 *pSrc)
174 if (pOut != pSrc)
176 pMtx = pSrc;
177 pOut->f._00 = pSrc->f._00;
178 pOut->f._11 = pSrc->f._11;
179 pOut->f._22 = pSrc->f._22;
180 pOut->f._33 = pSrc->f._33;
185 tmp.f._01 = pSrc->f._01;
186 tmp.f._02 = pSrc->f._02;
187 tmp.f._03 = pSrc->f._03;
188 tmp.f._12 = pSrc->f._12;
189 tmp.f._13 = pSrc->f._13;
190 tmp.f._23 = pSrc->f._23;
193 pOut->f._01 = pSrc->f._10;
194 pOut->f._02 = pSrc->f._20;
195 pOut->f._03 = pSrc->f._30;
196 pOut->f._12 = pSrc->f._21;
197 pOut->f._13 = pSrc->f._31;
198 pOut->f._23 = pSrc->f._32;