Lines Matching refs:mtx

123     f32 (*const mtx)[4] = pOut->m;
125 mtx[0][0] = ((2.0f * n) * reverseWidth) * scaleS;
126 mtx[0][1] = 0.0f;
127 mtx[0][2] = (((r + l) * reverseWidth) * scaleS) - translateS;
128 mtx[0][3] = 0.0f;
131 mtx[1][0] = 0.0f;
132 mtx[1][1] = ((2.0f * n) * reverseHeight) * scaleT;
133 mtx[1][2] = (((t+ b) * reverseHeight) * scaleT) - translateT;
134 mtx[1][3] = 0.0f;
136 mtx[2][0] = 0.0f;
137 mtx[2][1] = 0.0f;
138 mtx[2][2] = -1.0f;
139 mtx[2][3] = 0.0f;
152 f32 (*const mtx)[4] = pOut->m;
154 mtx[0][0] = 2.0f * reverseWidth * scaleS;
155 mtx[0][1] = 0.0f;
156 mtx[0][2] = 0.0f;
157 mtx[0][3] = ((-(r + l) * reverseWidth) * scaleS) + translateS;
160 mtx[1][0] = 0.0f;
161 mtx[1][1] = (2.0f * reverseHeight) * scaleT;
162 mtx[1][2] = 0.0f;
163 mtx[1][3] = ((-(t + b) * reverseHeight) * scaleT) + translateT;
165 mtx[2][0] = 0.0f;
166 mtx[2][1] = 0.0f;
167 mtx[2][2] = 0.0f;
168 mtx[2][3] = 1.0f;
182 f32 (*const mtx)[4] = pOut->m;
184 mtx[0][0] = (cot / aspect) * scaleS;
185 mtx[0][1] = 0.0f;
186 mtx[0][2] = -translateS;
187 mtx[0][3] = 0.0f;
189 mtx[1][0] = 0.0f;
190 mtx[1][1] = cot * scaleT;
191 mtx[1][2] = -translateT;
192 mtx[1][3] = 0.0f;
194 mtx[2][0] = 0.0f;
195 mtx[2][1] = 0.0f;
196 mtx[2][2] = -1.0f;
197 mtx[2][3] = 0.0f;
212 f32 (*const mtx)[4] = pOut->m;
214 mtx[0][0] = ((-1.0f * n) * reverseWidth) * scale;
215 mtx[0][1] = 0.0f;
216 mtx[0][2] = ((((r + l) * reverseWidth) * -0.5f) + 0.5f) * scale;
217 mtx[0][3] = 0.0f;
220 mtx[1][0] = 0.0f;
221 mtx[1][1] = ((-1.0f * n) * reverseHeight) * scale;
222 mtx[1][2] = ((((t+ b) * reverseHeight) * -0.5f) + 0.5f) * scale;
223 mtx[1][3] = 0.0f;
225 mtx[2][0] = 0.0f;
226 mtx[2][1] = 0.0f;
227 mtx[2][2] = scale;
228 mtx[2][3] = 0.0f;
241 f32 (*const mtx)[4] = pOut->m;
243 mtx[0][0] = reverseWidth;
244 mtx[0][1] = 0.0f;
245 mtx[0][2] = 0.0f;
246 mtx[0][3] = -(r + l) * reverseWidth + 0.5f;
249 mtx[1][0] = 0.0f;
250 mtx[1][1] = reverseHeight;
251 mtx[1][2] = 0.0f;
252 mtx[1][3] = -(t + b) * reverseHeight + 0.5f;
255 mtx[2][0] = 0.0f;
256 mtx[2][1] = 0.0f;
257 mtx[2][2] = tmp;
258 mtx[2][3] = n * tmp;
273 f32 (*const mtx)[4] = pOut->m;
275 mtx[0][0] = (cot / aspect) * scale;
276 mtx[0][1] = 0.0f;
277 mtx[0][2] = 0.5f * scale;
278 mtx[0][3] = 0.0f;
280 mtx[1][0] = 0.0f;
281 mtx[1][1] = cot * scale;
282 mtx[1][2] = 0.5f * scale;
283 mtx[1][3] = 0.0f;
285 mtx[2][0] = 0.0f;
286 mtx[2][1] = 0.0f;
287 mtx[2][2] = scale;
288 mtx[2][3] = 0.0f;