From 182d6c76e378b99e8ed9f9bc71bee5912dcec8fc Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Sun, 16 Apr 2023 16:17:30 -0500 Subject: [PATCH] wined3d-Silence_FIXMEs: Remove patch set. This would be desirable if we had a known application that needed it, but we don't. If the application ever resurfaces, it will be easy to rewrite and fix upstream. --- ...t-FIXME-only-once-in-surface_cpu_blt.patch | 26 ------------------- patches/wined3d-Silence_FIXMEs/definition | 1 - 2 files changed, 27 deletions(-) delete mode 100644 patches/wined3d-Silence_FIXMEs/0004-wined3d-Print-FIXME-only-once-in-surface_cpu_blt.patch delete mode 100644 patches/wined3d-Silence_FIXMEs/definition diff --git a/patches/wined3d-Silence_FIXMEs/0004-wined3d-Print-FIXME-only-once-in-surface_cpu_blt.patch b/patches/wined3d-Silence_FIXMEs/0004-wined3d-Print-FIXME-only-once-in-surface_cpu_blt.patch deleted file mode 100644 index 68a55917..00000000 --- a/patches/wined3d-Silence_FIXMEs/0004-wined3d-Print-FIXME-only-once-in-surface_cpu_blt.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 42ccc2bd6a5d7182baae711eb3e96e40c77b8263 Mon Sep 17 00:00:00 2001 -From: Christian Costa -Date: Sun, 25 Oct 2015 12:50:31 +0100 -Subject: wined3d: Print FIXME only once in surface_cpu_blt. - ---- - dlls/wined3d/surface.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/dlls/wined3d/surface.c b/dlls/wined3d/surface.c -index 2bf4854511..d6c03a8889 100644 ---- a/dlls/wined3d/surface.c -+++ b/dlls/wined3d/surface.c -@@ -2935,7 +2935,8 @@ static HRESULT surface_cpu_blt(struct wined3d_texture *dst_texture, unsigned int - && (src_width != dst_width || src_height != dst_height)) - { - /* Can happen when d3d9 apps do a StretchRect() call which isn't handled in GL. */ -- FIXME("Filter %s not supported in software blit.\n", debug_d3dtexturefiltertype(filter)); -+ static int once; -+ if (!once++) FIXME("Filter %s not supported in software blit.\n", debug_d3dtexturefiltertype(filter)); - } - - xinc = (src_width << 16) / dst_width; --- -2.11.0 - diff --git a/patches/wined3d-Silence_FIXMEs/definition b/patches/wined3d-Silence_FIXMEs/definition deleted file mode 100644 index 9d3b447e..00000000 --- a/patches/wined3d-Silence_FIXMEs/definition +++ /dev/null @@ -1 +0,0 @@ -Fixes: Silence repeated FIXME message in surface_cpu_blt