From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59041) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bA0hv-0001WC-Dj for qemu-devel@nongnu.org; Mon, 06 Jun 2016 16:01:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bA0hs-0005jR-Lz for qemu-devel@nongnu.org; Mon, 06 Jun 2016 16:01:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51030) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bA0hs-0005jN-GP for qemu-devel@nongnu.org; Mon, 06 Jun 2016 16:01:04 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 41CFE50F63 for ; Mon, 6 Jun 2016 20:01:03 +0000 (UTC) From: Thomas Huth Date: Mon, 6 Jun 2016 22:01:01 +0200 Message-Id: <1465243261-26731-1-git-send-email-thuth@redhat.com> Subject: [Qemu-devel] [PATCH] ui/console-gl: Add support for big endian display surfaces List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Gerd Hoffmann This is required for running QEMU on big endian hosts (like PowerPC machines) that use RGB instead of BGR byte ordering. Ticket: https://bugs.launchpad.net/qemu/+bug/1581796 Signed-off-by: Thomas Huth --- ui/console-gl.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/console-gl.c b/ui/console-gl.c index 74b1bed..5165e21 100644 --- a/ui/console-gl.c +++ b/ui/console-gl.c @@ -88,6 +88,11 @@ void surface_gl_create_texture(ConsoleGLState *gls, surface->glformat = GL_BGRA_EXT; surface->gltype = GL_UNSIGNED_BYTE; break; + case PIXMAN_BE_x8r8g8b8: + case PIXMAN_BE_a8r8g8b8: + surface->glformat = GL_RGBA; + surface->gltype = GL_UNSIGNED_BYTE; + break; case PIXMAN_r5g6b5: surface->glformat = GL_RGB; surface->gltype = GL_UNSIGNED_SHORT_5_6_5; -- 1.8.3.1