Lines Matching defs:transform
37 * Returns whether the provided transform is affine.
39 * transform may be null.
105 DBG(("%s: no transform\n", __FUNCTION__));
110 DBG(("%s: FilterNearest?=%d, precise?=%d, transform=[%f %f %f, %f %f %f, %f %f %f]\n",
157 * Returns the floating-point coordinates transformed by the given transform.
161 const PictTransform *transform,
164 if (transform == NULL) {
168 _sna_get_transformed_coordinates(x, y, transform, x_out, y_out);
172 * Returns the un-normalized floating-point coordinates transformed by the given transform.
176 const PictTransform *transform,
179 if (transform == NULL) {
186 if (_sna_transform_point(transform, x, y, result)) {