From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Takanari Hayama <taki@igel.co.jp>
Cc: linux-renesas-soc@vger.kernel.org,
kieran.bingham+renesas@ideasonboard.com
Subject: Re: [PATCH 2/3] kmstest: Support specifying pixel blend mode for planes
Date: Sun, 31 Jul 2022 19:02:57 +0300 [thread overview]
Message-ID: <YuansVTsDcalyHJp@pendragon.ideasonboard.com> (raw)
In-Reply-To: <20220704025632.3911253-3-taki@igel.co.jp>
Hi Hayama-san,
Thank you for the patch.
On Mon, Jul 04, 2022 at 11:56:31AM +0900, Takanari Hayama wrote:
> Add an optional pixel blend mode argument to the atomic_plane_set()
> function to specify the pixel blend mode for the plane.
>
> Signed-off-by: Takanari Hayama <taki@igel.co.jp>
> ---
> tests/kmstest.py | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/tests/kmstest.py b/tests/kmstest.py
> index 224c160e32fa..a39ceab3891b 100755
> --- a/tests/kmstest.py
> +++ b/tests/kmstest.py
> @@ -395,7 +395,7 @@ class KMSTest(object):
> else:
> return req.commit(0, True)
>
> - def atomic_plane_set(self, plane, crtc, source, destination, fb, alpha=None, zpos=None, sync=False):
> + def atomic_plane_set(self, plane, crtc, source, destination, fb, alpha=None, zpos=None, blendmode=None, sync=False):
I'll add a line break while at it as the line is getting long.
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> req = AtomicRequest(self)
> req.add(plane, {
> 'FB_ID': fb.id,
> @@ -413,6 +413,8 @@ class KMSTest(object):
> req.add(plane, 'alpha', alpha)
> if zpos is not None:
> req.add(plane, 'zpos', zpos)
> + if blendmode is not None:
> + req.add(plane, 'pixel blend mode', blendmode)
> if sync:
> return req.commit_sync()
> else:
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2022-07-31 16:03 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-04 2:56 [PATCH 0/3] Test pixel blend mode Takanari Hayama
2022-07-04 2:56 ` [PATCH 1/3] tests: Support enum property type Takanari Hayama
2022-07-04 8:43 ` Sergei Shtylyov
2022-07-04 8:53 ` Takanari Hayama
2022-07-04 9:00 ` Sergei Shtylyov
2022-07-04 9:13 ` Takanari Hayama
2022-07-31 16:00 ` Laurent Pinchart
2022-07-31 16:18 ` Laurent Pinchart
2022-08-01 8:29 ` Takanari Hayama
2022-07-04 2:56 ` [PATCH 2/3] kmstest: Support specifying pixel blend mode for planes Takanari Hayama
2022-07-31 16:02 ` Laurent Pinchart [this message]
2022-07-04 2:56 ` [PATCH 3/3] tests: Add pixel blend mode test Takanari Hayama
2022-07-31 18:50 ` Laurent Pinchart
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YuansVTsDcalyHJp@pendragon.ideasonboard.com \
--to=laurent.pinchart@ideasonboard.com \
--cc=kieran.bingham+renesas@ideasonboard.com \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=taki@igel.co.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox