From: Jim Bride <jim.bride@linux.intel.com>
To: intel-gfx@lists.freedesktop.org
Subject: [PATCH v2 i-g-t] demos/intel_sprite_on: Fix connector iteration bug
Date: Wed, 15 Jun 2016 10:48:32 -0700 [thread overview]
Message-ID: <1466012912-1582-1-git-send-email-jim.bride@linux.intel.com> (raw)
In-Reply-To: <1465829466-13735-1-git-send-email-jim.bride@linux.intel.com>
Instead of looping until the first disconnected port is found,
now go through all possible connectors, drawing the sprite on
any connected display.
v2: Print a message if we don't find any valid connectors.
Signed-off-by: Jim Bride <jim.bride@linux.intel.com>
---
demos/intel_sprite_on.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/demos/intel_sprite_on.c b/demos/intel_sprite_on.c
index 6dddded..d3bd420 100644
--- a/demos/intel_sprite_on.c
+++ b/demos/intel_sprite_on.c
@@ -518,6 +518,8 @@ static void ricochet(int tiled, int sprite_w, int sprite_h,
char key;
int sprite_plane_count = 0;
int i;
+ int found_count = 0;
+
// Open up I915 graphics device
gfx_fd = drmOpen("i915", NULL);
if (gfx_fd < 0) {
@@ -564,10 +566,15 @@ static void ricochet(int tiled, int sprite_w, int sprite_h,
// Find the native (preferred) display mode
connector_find_preferred_mode(gfx_fd, gfx_resources, &curr_connector);
if (curr_connector.mode_valid == 0) {
- printf("No valid preferred mode detected\n");
- goto out;
+
+ if (((c_index + 1) == gfx_resources->count_connectors) &&
+ (found_count == 0))
+ printf("Failed to find any valid connections.");
+ continue;
}
+ found_count++;
+
// Determine if sprite hardware is available on pipe
// associated with this connector.
sprite_plane_count = connector_find_plane(gfx_fd, &curr_connector,
--
2.7.4
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2016-06-15 17:48 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-13 14:51 [PATCH i-g-t] demos/intel_sprite_on: Fix connector iteration bug Jim Bride
2016-06-15 12:17 ` Marius Vlad
2016-06-15 17:24 ` Jim Bride
2016-06-15 17:48 ` Jim Bride [this message]
2016-07-04 14:34 ` [PATCH v2 " Marius Vlad
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=1466012912-1582-1-git-send-email-jim.bride@linux.intel.com \
--to=jim.bride@linux.intel.com \
--cc=intel-gfx@lists.freedesktop.org \
/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