Home | History | Annotate | Download | only in math

Lines Matching refs:coord

39    GLfloat *coord = coord_vec->start;
46 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) {
47 *out = (coord[0] * plane0 +
48 coord[1] * plane1 +
59 GLfloat *coord = coord_vec->start;
67 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) {
68 *out = (coord[0] * plane0 +
69 coord[1] * plane1 +
70 coord[2] * plane2 +
81 GLfloat *coord = coord_vec->start;
88 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) {
89 *out = (coord[0] * plane0 +
90 coord[1] * plane1 +
91 coord[2] * plane2 +
92 coord[3] * plane3);