summaryrefslogtreecommitdiff
path: root/media-plugins/libvisual-plugins/files/libvisual-plugins-0.4.0-clang.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-09-16 09:32:48 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-09-16 09:32:48 +0100
commit9ee6d97c2883d42f204a533a8bc1f4562df778fb (patch)
treeb690ddc0ca30f1472887edbb0b8313629bfcbbb2 /media-plugins/libvisual-plugins/files/libvisual-plugins-0.4.0-clang.patch
parentb17a3ef12038de50228bade1f05502c74e135321 (diff)
gentoo resync : 16.09.2020
Diffstat (limited to 'media-plugins/libvisual-plugins/files/libvisual-plugins-0.4.0-clang.patch')
-rw-r--r--media-plugins/libvisual-plugins/files/libvisual-plugins-0.4.0-clang.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/media-plugins/libvisual-plugins/files/libvisual-plugins-0.4.0-clang.patch b/media-plugins/libvisual-plugins/files/libvisual-plugins-0.4.0-clang.patch
new file mode 100644
index 000000000000..25c2880fa0c5
--- /dev/null
+++ b/media-plugins/libvisual-plugins/files/libvisual-plugins-0.4.0-clang.patch
@@ -0,0 +1,42 @@
+diff --git a/plugins/actor/G-Force/Common/UI/LineXX.cpp b/plugins/actor/G-Force/Common/UI/LineXX.cpp
+index 304eec8..5b18503 100644
+--- a/plugins/actor/G-Force/Common/UI/LineXX.cpp
++++ b/plugins/actor/G-Force/Common/UI/LineXX.cpp
+@@ -74,13 +74,13 @@
+
+
+ #if CLR_INTERP && P_SZ != 1
+- int32_t len = sqrt( dx * dx + dy * dy ) + 1;
++ int32_t len = sqrt( (long double) dx * dx + dy * dy ) + 1;
+ dR /= len;
+ dG /= len;
+ dB /= len;
+ color = __Clr( R, G, B );
+ #elif CLR_INTERP && P_SZ == 1
+- int32_t len = sqrt( dx * dx + dy * dy ) + 1;
++ int32_t len = sqrt( (long double) dx * dx + dy * dy ) + 1;
+ dR /= len;
+ color = __Clr( R, G, B );
+ #endif
+@@ -154,7 +154,7 @@
+
+ for ( j = 0; j < tw; j++ ) {
+ int32_t tmp = j - halfW;
+- c_x = halfW - ( ( int32_t ) sqrt( halfW * halfW - tmp * tmp ) );
++ c_x = halfW - ( ( int32_t ) sqrt( (long double) halfW * halfW - tmp * tmp ) );
+ center = basePtr + (j-halfW) * mBytesPerRow;
+ for ( int k = c_x; k < tw - c_x; k++ ){
+ ((PIXTYPE*) center)[k-halfW] = color;
+diff --git a/plugins/morph/flash/morph_flash.c b/plugins/morph/flash/morph_flash.c
+index fb5308a..c57f490 100644
+--- a/plugins/morph/flash/morph_flash.c
++++ b/plugins/morph/flash/morph_flash.c
+@@ -116,7 +116,7 @@ int lv_morph_flash_palette (VisPluginData *plugin, float rate, VisAudio *audio,
+ FlashPrivate *priv = visual_object_get_private (VISUAL_OBJECT (plugin));
+
+ if (src1->pal == NULL || src2->pal == NULL)
+- return;
++ return -1;
+
+ if (rate < 0.5)
+ visual_palette_blend (pal, src1->pal, &priv->whitepal, rate * 2);