Files
gtk/gsk
Alessandro Bono ca9ba3cc80 gsk: Remove unnecessary G_GNUC_FALLTHROUGH
In GSK the following pattern is used four times:
```
  switch (self->filter)
    {
      default:
        g_assert_not_reached ();
        G_GNUC_FALLTHROUGH;
      case GSK_GPU_BLIT_LINEAR:
        filter = GL_LINEAR;
        break;

      case GSK_GPU_BLIT_NEAREST:
        filter = GL_NEAREST;
        break;
    }
```
The G_GNUC_FALLTHROUGH macro is not required. When G_DISABLE_ASSERT
is defined the body of the `default` case is empty, thus there is
no need. When G_DISABLE_ASSERT is not defined the body of the `default`
case contains g_assert_not_reached() thus it won't fallthrough.

This resolves the following:
```
[221/1379] Compiling C object gsk/libgsk.a.p/gpu_gskgpublitop.c.o
[...]
error: fallthrough annotation in unreachable code [-Werror,-Wimplicit-fallthrough]
1 error generated.
```
2024-02-13 18:29:03 +01:00
..
2024-01-21 14:02:08 -05:00
2024-01-07 14:47:22 +01:00
2020-07-25 00:47:36 +02:00
2023-09-17 00:23:53 -04:00
2023-03-14 14:56:42 -04:00
2023-12-22 08:47:47 -05:00
2023-03-31 15:11:10 -04:00
2024-01-07 20:44:05 -05:00
2023-08-28 21:14:28 -04:00
2023-08-25 20:16:49 -04:00
2023-08-25 07:33:16 -04:00
2023-09-15 16:31:09 -04:00
2023-12-26 21:57:04 -05:00
2023-08-06 20:48:09 -04:00
2022-07-15 15:47:11 -04:00
2023-07-16 12:13:00 +02:00
2023-04-27 13:42:03 +02:00
2024-02-11 20:24:28 -05:00
2024-02-11 20:48:59 -05:00
2024-01-20 11:33:59 -05:00
2023-08-07 13:02:57 -04:00
2023-03-31 15:11:10 -04:00
2023-09-15 03:46:27 +02:00