Lines Matching defs:mtx
11462 float mtx[6] = {1,0,0,1,0,0}, m, n;
11469 mtx[4] = nk_ttSHORT(comp); comp+=2;
11470 mtx[5] = nk_ttSHORT(comp); comp+=2;
11472 mtx[4] = nk_ttCHAR(comp); comp+=1;
11473 mtx[5] = nk_ttCHAR(comp); comp+=1;
11480 mtx[0] = mtx[3] = nk_ttSHORT(comp)/16384.0f; comp+=2;
11481 mtx[1] = mtx[2] = 0;
11483 mtx[0] = nk_ttSHORT(comp)/16384.0f; comp+=2;
11484 mtx[1] = mtx[2] = 0;
11485 mtx[3] = nk_ttSHORT(comp)/16384.0f; comp+=2;
11487 mtx[0] = nk_ttSHORT(comp)/16384.0f; comp+=2;
11488 mtx[1] = nk_ttSHORT(comp)/16384.0f; comp+=2;
11489 mtx[2] = nk_ttSHORT(comp)/16384.0f; comp+=2;
11490 mtx[3] = nk_ttSHORT(comp)/16384.0f; comp+=2;
11494 m = (float) NK_SQRT(mtx[0]*mtx[0] + mtx[1]*mtx[1]);
11495 n = (float) NK_SQRT(mtx[2]*mtx[2] + mtx[3]*mtx[3]);
11506 v->x = (short)(m * (mtx[0]*x + mtx[2]*y + mtx[4]));
11507 v->y = (short)(n * (mtx[1]*x + mtx[3]*y + mtx[5]));
11509 v->cx = (short)(m * (mtx[0]*x + mtx[2]*y + mtx[4]));
11510 v->cy = (short)(n * (mtx[1]*x + mtx[3]*y + mtx[5]));