[RFC weston 13/16] compositor: Add a function to test if images transformed by a matrix should be bilinearly filtered

Jason Ekstrand jason at jlekstrand.net
Wed Oct 1 18:09:32 PDT 2014


Allow me to chip in here.  Sorry that I haven't had a chance to really look
over things carefully.  I have been reading this thread, just haven't had a
chance to respond.

On Wed, Oct 1, 2014 at 12:41 AM, Pekka Paalanen <ppaalanen at gmail.com> wrote:

> On Tue, 30 Sep 2014 14:35:24 -0500
> Derek Foreman <derekf at osg.samsung.com> wrote:
>
> > Thanks for taking a look!
> >
> > On 26/09/14 05:48 PM, Bill Spitzak wrote:
> > > 90 degree rotation about x or y will require filtering.
> >
> > Yup, you're right.
> >
> > > You test y scale twice, must be a typo. I think you intended to test z,
> > > but in fact z scale is not relevant so you should not test it at all.
> >
> > Argh - thanks.  Why isn't Z scale relevant?  I'm worried about making
> > assumptions about the transformations these matrices represent and
> > having those assumptions violated in the future...  For Z not to matter
> > are we assuming projection will always be orthographic?
>
> Weston never uses the final Z coordinate for anything, so in that sense
> it is always orthographic. Essentially, we could just do with 3x3
> matrices perfectly fine. 3x3 supports 2D-projective which is enough to
> implement fake-3D effects like
> http://people.collabora.com/~pq/rotate3d-fun.webm
> (The gl-renderer does not route the W element at all, I had to patch
> that. Pixman-renderer OTOH just worked.)
>
> Weston also hardcodes the input Z coordinate always to 0, no matter
> which way you are going between buffer and output spaces.
>
> I suppose the 4x4 matrix was originally chosen to fit the OpenGL API.
> And maybe with some speculation about a desktop cube implementation or
> something, but I don't really see the cube or such coming, not as a
> generic thing anyway as only the gl-renderer could support it with
> true 3D space.
>
> > > Translation by non-integer will also require filtering.
> >
> > Good point.
> >
> > > I recommend instead of checking the rotation to instead look for zeros
> > > in the correct locations in the matrix. Matrix must be of the form:
> > >
> > >  |sx 0  0 tx|
> > >  |0  sy 0 ty|
> > >  |?  ?  ?  ?|
> > >  |0  0  0  1|
> > >
> > > or
> > >
> > >  |0  sx 0 tx|
> > >  |sy 0  0 ty|
> > >  |?  ?  ?  ?|
> > >  |0  0  0  1|
> > >
> > > sx and sy must be ±1, and tx and ty must be integers. The ? can be any
> > > value.
> >
> > That could save us the very expensive matrix decomposition.  I'll try
> > this out.  Thanks.
> >
> > I think this may be better than decomposition for deciding to use video
> > planes in compositor-drm as well.
> >
> > (In fact, you've got me wondering if we ever need to split a matrix into
> > basic transformations at all...)
>
> I'd be wondering about that, too. My intuition would say there is no
> need to really decompose. Just checking the elements should suffice,
> and when the matrix is supportable for whatever, then you pick the
> right elements (which is a bit like decomposition, but no need to be
> generic at all).
>

Yeah, I'm not convinced we need to be able to do a full decomposition
either.  My original intention was something like this:

bool
weston_matrix_to_integer_transform(const weston_matrix *mat, enum
wl_output_transform& transform, int *scale, int *x, int *y)

(do we use "bool" in weston?  Maybe just return int).  We may need both x
and y scales and it may be useful to get those as floats.  I'm not sure on
that.  Pekka, what would the RPi backend use?  Basically, we want to be
able to do 2 things: First, detect if it's an entirely integer transform
and use GL_NEAREST instead of GL_LINEAR and second, know how to flip the
surface around in cases when we can do some simple transformations but
can't do an arbitrary matrix transformation.  One example here is DRM
planes.  We can only use a plane when there's no scale and the
buffer-to-output transform has no rotation.  We need to check for that
condition and then pull the needed data out.

Point is, we don't need a full matrix decomposition.  Also, it's worth
throwing out there that the caching probably doesn't help us at all because
we're going to usually be calling this on freshly computed matrices such as
the above mentioned buffer-to-output transform.

Does that make sense?
--Jason


>
> And you take take advantage of the fact that incoming Z=0 and outgoing
> Z is ignored, I believe. That is, for the final, total transformation
> matrix between buffer and output spaces.
>

Yes, we can vastly simplify things by taking that into account.  Basically,
you can throw away the 2nd row and column and not care about them at all.


>
> > > Also pixman is already doing equivalent tests and short-circuiting to
> > > nearest filter, so you might not need to check this anyway.
> >
> > This is also used for the gl renderer, so I don't think I can count on
> > that short circuit there...  Though bilinear vs nearest doesn't have
> > anywhere near the same performance impact there.
>
> Yeah, we need to pick nearest vs. linear in the gl-renderer ourselves.
> Even if the choice did not affect the outcome, choosing nearest when we
> can might save memory bandwidth. I hope.
>
> And then we have the accuracy problems of GL, so picking nearest
> guarantees a crisp image reproduction, otherwise one might get a little
> blur. In theory we should get rid of the blur by careful coordinate
> manipulation even with linear, but I'm not sure that manipulation is
> portable between GL implementations.
>
>
> Thanks,
> pq
>
> > Are you suggesting pixman always be set to use bilinear, and it'll just
> > pick nearest automatically when the image transform doesn't require it?
> >
> > > On 09/26/2014 02:10 PM, Derek Foreman wrote:
> > >
> > >> +WL_EXPORT int
> > >> +weston_matrix_needs_filtering(struct weston_matrix *matrix)
> > >> +{
> > >> +    if (!rot_is_90(weston_matrix_get_rotation_x(matrix))
> > >> +     || !rot_is_90(weston_matrix_get_rotation_y(matrix))
> > >> +     || !rot_is_90(weston_matrix_get_rotation_z(matrix))
> > >> +     || (fabs(weston_matrix_get_scale_x(matrix) - 1.0) > 0.0001)
> > >> +     || (fabs(weston_matrix_get_scale_y(matrix) - 1.0) > 0.0001)
> > >> +     || (fabs(weston_matrix_get_scale_y(matrix) - 1.0) > 0.0001))
> > >> +        return 1;
> > >> +
> > >> +    return 0;
> > >> +}
> _______________________________________________
> wayland-devel mailing list
> wayland-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/wayland-devel
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/wayland-devel/attachments/20141001/16e81fc5/attachment.html>


More information about the wayland-devel mailing list