From patchwork Fri Feb 11 18:05:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: alexandros.frantzis@linaro.org X-Patchwork-Id: 127 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:40:13 -0000 Delivered-To: patches@linaro.org Received: by 10.147.124.5 with SMTP id b5cs226404yan; Fri, 11 Feb 2011 10:06:46 -0800 (PST) Received: by 10.213.108.81 with SMTP id e17mr682886ebp.71.1297447605620; Fri, 11 Feb 2011 10:06:45 -0800 (PST) Received: from mail-ey0-f178.google.com (mail-ey0-f178.google.com [209.85.215.178]) by mx.google.com with ESMTPS id p10si2413523eeh.74.2011.02.11.10.06.45 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 11 Feb 2011 10:06:45 -0800 (PST) Received-SPF: neutral (google.com: 209.85.215.178 is neither permitted nor denied by best guess record for domain of alexandros.frantzis@linaro.org) client-ip=209.85.215.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.215.178 is neither permitted nor denied by best guess record for domain of alexandros.frantzis@linaro.org) smtp.mail=alexandros.frantzis@linaro.org Received: by eyh5 with SMTP id 5so1532792eyh.37 for ; Fri, 11 Feb 2011 10:06:45 -0800 (PST) Received: by 10.213.19.7 with SMTP id y7mr733560eba.94.1297447604858; Fri, 11 Feb 2011 10:06:44 -0800 (PST) Received: from localhost ([194.219.210.40]) by mx.google.com with ESMTPS id b52sm919299eei.19.2011.02.11.10.06.20 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 11 Feb 2011 10:06:23 -0800 (PST) From: alexandros.frantzis@linaro.org To: cairo@cairographics.org Subject: [PATCH 1/3] egl: Fix eglMakeCurrent for egl surfaces Date: Fri, 11 Feb 2011 20:05:53 +0200 Message-Id: <1297447555-29654-2-git-send-email-alexandros.frantzis@linaro.org> X-Mailer: git-send-email 1.7.2.3 In-Reply-To: <1297447555-29654-1-git-send-email-alexandros.frantzis@linaro.org> References: <1297447555-29654-1-git-send-email-alexandros.frantzis@linaro.org> From: Benjamin Franzke --- src/cairo-egl-context.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/cairo-egl-context.c b/src/cairo-egl-context.c index b4c18fc..9f14633 100644 --- a/src/cairo-egl-context.c +++ b/src/cairo-egl-context.c @@ -73,7 +73,7 @@ _egl_acquire (void *abstract_ctx) } eglMakeCurrent (ctx->display, - ctx->dummy_surface, ctx->dummy_surface, ctx->context); + current_surface, current_surface, ctx->context); } static void