summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/libsdl2/libsdl2/directfb-spurious-curly-brace-missing-e.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/libsdl2/libsdl2/directfb-spurious-curly-brace-missing-e.patch')
-rw-r--r--meta/recipes-graphics/libsdl2/libsdl2/directfb-spurious-curly-brace-missing-e.patch49
1 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-graphics/libsdl2/libsdl2/directfb-spurious-curly-brace-missing-e.patch b/meta/recipes-graphics/libsdl2/libsdl2/directfb-spurious-curly-brace-missing-e.patch
new file mode 100644
index 0000000000..aa351a89ba
--- /dev/null
+++ b/meta/recipes-graphics/libsdl2/libsdl2/directfb-spurious-curly-brace-missing-e.patch
@@ -0,0 +1,49 @@
1# HG changeset patch
2# User Fabrice Fontaine <fontaine.fabrice@gmail.com>
3# Date 1585069551 25200
4# Node ID 769f800952179633ec6c3e6bc1bc1d40e401750a
5# Parent 63387e8920f58f608288f247824ec5f4c286691f
6src/video/directfb/SDL_DirectFB_render.c: fix build
7Build with directfb is broken due to a spurious '}' and a missing 'E'
8since version 2.0.12 and https://hg.libsdl.org/SDL/rev/2d5b5a5ccbfb:
9
10/home/buildroot/autobuild/run/instance-2/output-1/build/sdl2-2.0.12/src/video/directfb/SDL_DirectFB_render.c: In function 'SetBlendMode':
11/home/buildroot/autobuild/run/instance-2/output-1/build/sdl2-2.0.12/src/video/directfb/SDL_DirectFB_render.c:202:9: error: case label not within a switch statement
12 202 | case SDL_BLENDMODE_MUL:
13 | ^~~~
14
15/home/buildroot/autobuild/run/instance-2/output-1/build/sdl2-2.0.12/src/video/directfb/SDL_DirectFB_render.c:205:67: error: 'DSBF_DSTCOLOR' undeclared (first use in this function); did you mean 'DSBF_DESTCOLOR'?
16 205 | SDL_DFB_CHECK(destsurf->SetSrcBlendFunction(destsurf, DSBF_DSTCOLOR));
17 | ^~~~~~~~~~~~~
18
19Fixes:
20 - http://autobuild.buildroot.org/results/83ccefee68c2800c0544e6f40fa8bc8ee6b67b77
21
22Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
23
24--
25
26The patch was imported from the libsdl Mercurial repository
27(https://hg.libsdl.org/SDL) as of changeset id 769f80095217.
28
29Upstream-Status: Backport
30
31Signed-off-by: Mark Jonas <toertel@gmail.com>
32
33
34diff -r 63387e8920f5 -r 769f80095217 src/video/directfb/SDL_DirectFB_render.c
35--- a/src/video/directfb/SDL_DirectFB_render.c Mon Mar 23 14:10:25 2020 -0700
36+++ b/src/video/directfb/SDL_DirectFB_render.c Tue Mar 24 10:05:51 2020 -0700
37@@ -198,11 +198,10 @@
38 SDL_DFB_CHECK(destsurf->SetDstBlendFunction(destsurf, DSBF_SRCCOLOR));
39
40 break;
41- }
42 case SDL_BLENDMODE_MUL:
43 data->blitFlags = DSBLIT_BLEND_ALPHACHANNEL;
44 data->drawFlags = DSDRAW_BLEND;
45- SDL_DFB_CHECK(destsurf->SetSrcBlendFunction(destsurf, DSBF_DSTCOLOR));
46+ SDL_DFB_CHECK(destsurf->SetSrcBlendFunction(destsurf, DSBF_DESTCOLOR));
47 SDL_DFB_CHECK(destsurf->SetDstBlendFunction(destsurf, DSBF_INVSRCALPHA));
48
49 break;