From b805bfc4ae7c456a8bf53e4458ec4a932eb4b49d Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 27 Sep 2013 14:43:25 -0400 Subject: [PATCH] racket/draw: faster `draw-bitmap` when alpha < 1.0 In common cases, use Cairo's alpha support instead of cloning the bitmap to apply an alpha. original commit: c3eae40f4c3dcda84096a544885751205783c1cd --- pkgs/gui-pkgs/gui-test/tests/gracket/draw.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/gui-pkgs/gui-test/tests/gracket/draw.rkt b/pkgs/gui-pkgs/gui-test/tests/gracket/draw.rkt index 5eff3fb4..b4615c96 100644 --- a/pkgs/gui-pkgs/gui-test/tests/gracket/draw.rkt +++ b/pkgs/gui-pkgs/gui-test/tests/gracket/draw.rkt @@ -12,7 +12,7 @@ (define sys-path (lambda (f) - (build-path (collection-path "icons") f))) + (collection-file-path f "icons"))) (define local-path (let ([d (current-load-relative-directory)])