Lines Matching refs:texcoord
64 float vertices[4][2][4]; /**< {pos, color} or {pos, texcoord} */
899 out->texcoord.x1 = x1 / (float)u_minify(src_width0, level);
900 out->texcoord.y1 = y1 / (float)u_minify(src_height0, level);
901 out->texcoord.x2 = x2 / (float)u_minify(src_width0, level);
902 out->texcoord.y2 = y2 / (float)u_minify(src_height0, level);
904 out->texcoord.x1 = x1;
905 out->texcoord.y1 = y1;
906 out->texcoord.x2 = x2;
907 out->texcoord.y2 = y2;
910 out->texcoord.z = 0;
911 out->texcoord.w = 0;
922 out->texcoord.z = r;
927 out->texcoord.y1 = out->texcoord.y2 = layer;
931 out->texcoord.z = layer;
932 out->texcoord.w = sample;
936 out->texcoord.w = (unsigned)layer / 6;
940 out->texcoord.w = sample;
957 out[0] = attrib->texcoord.x1;
958 out[1] = attrib->texcoord.y1;
960 out[0] = attrib->texcoord.x2;
961 out[1] = attrib->texcoord.y1;
963 out[0] = attrib->texcoord.x2;
964 out[1] = attrib->texcoord.y2;
966 out[0] = attrib->texcoord.x1;
967 out[1] = attrib->texcoord.y2;
1451 ctx->vertices[i][1][2] = attrib->texcoord.z;
1452 ctx->vertices[i][1][3] = attrib->texcoord.w;
1837 ctx->vertices[i][1][3] = coord.texcoord.w;