public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Michael Brown" <mcb30@ipxe.org>
To: devel@edk2.groups.io, alibanejad1376@gmail.com, "Paul,
	Bill" <Bill.Paul@windriver.com>
Subject: Re: [edk2-devel] Graphic Output on qemu
Date: Wed, 8 Feb 2023 09:06:05 +0000	[thread overview]
Message-ID: <0102018630466504-2ff97024-e158-48ea-9ea5-cc1e11d20bcc-000000@eu-west-1.amazonses.com> (raw)
In-Reply-To: <CADH3hnK-YsgNQKjzR_yUm=D0dbOG=md2SJjGB_kvEeeUhg4Z+Q@mail.gmail.com>

On 08/02/2023 08:03, Alireza Banejad wrote:
> Below is how I use the HandleProtocol function:
> 
>    Status = gBS->HandleProtocol (
>                    gST->ConsoleOutHandle,
>                    &gEfiGraphicsOutputProtocolGuid,
>                    (VOID **)&GraphicsOutput
>                    );

You are querying only the ConsoleOutHandle, which is not necessarily 
where the GOP will be installed.

Use LocateProtocol() to find the protocol instance instead:


   Status = gBS->LocateProtocol(&gEfiGraphicsOutputProtocolGuid, NULL,
                                (VOID **)&GraphicsOutput);

HTH,

Michael


  reply	other threads:[~2023-02-08  9:06 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-07 10:22 Graphic Output on qemu Alireza Banejad
2023-02-07 19:55 ` [edk2-devel] " Paul, Bill
2023-02-08  8:03   ` Alireza Banejad
2023-02-08  9:06     ` Michael Brown [this message]
2023-02-08  9:55       ` Alireza Banejad
2023-02-08 10:00         ` Michael Brown

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-list 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=0102018630466504-2ff97024-e158-48ea-9ea5-cc1e11d20bcc-000000@eu-west-1.amazonses.com \
    --to=devel@edk2.groups.io \
    /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