From d278c30e68d79e86a3e2207b629d1e461856f907 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 30 Jun 2015 20:35:59 -0700 Subject: [PATCH] glamor: Drop dead glamor_is_large_picture(). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It died as of keithp's new glyphs code. Signed-off-by: Eric Anholt Reviewed-by: Michel Dänzer Reviewed-by: Keith Packard --- glamor/glamor_utils.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/glamor/glamor_utils.h b/glamor/glamor_utils.h index cef62c52c..0a7de82ab 100644 --- a/glamor/glamor_utils.h +++ b/glamor/glamor_utils.h @@ -945,18 +945,6 @@ glamor_is_large_pixmap(PixmapPtr pixmap) return (glamor_pixmap_priv_is_large(priv)); } -inline static Bool -glamor_is_large_picture(PicturePtr picture) -{ - PixmapPtr pixmap; - - if (picture->pDrawable) { - pixmap = glamor_get_drawable_pixmap(picture->pDrawable); - return glamor_is_large_pixmap(pixmap); - } - return FALSE; -} - inline static Bool glamor_tex_format_is_readable(GLenum format) {