Lines Matching refs:zpos
4 Subject: [PATCH 08/43] kmssink: Support setting plane zpos
6 Set env KMSSINK_PLANE_ZPOS to specify plane zpos.
7 Set env KMSSINK_PLANE_ON_TOP to set max zpos.
8 Set env KMSSINK_PLANE_ON_BOTTOM to set min zpos.
10 Default zpos is max.
32 + guint64 min, max, zpos;
69 + zpos = self->saved_zpos;
71 + zpos = min + 1;
75 + zpos = atoi (buf);
77 + zpos = max;
79 + zpos = min;
82 + GST_INFO_OBJECT (self, "set plane zpos = %lu (%lu~%lu)", zpos, min, max);
88 + DRM_MODE_OBJECT_PLANE, props->props[i], zpos);