Load jpegs without gdk-pixbuf

Use our own loader for jpeg files.
This commit is contained in:
Matthias Clasen
2021-09-11 17:02:41 -04:00
parent 6a83d38e7b
commit 0f7c33f894

View File

@@ -48,6 +48,7 @@
#include <graphene.h>
#include "loaders/gdkpngprivate.h"
#include "loaders/gdktiffprivate.h"
#include "loaders/gdkjpegprivate.h"
/* HACK: So we don't need to include any (not-yet-created) GSK or GTK headers */
void
@@ -443,6 +444,11 @@ gdk_texture_new_from_bytes (GBytes *bytes,
{
return gdk_load_tiff (bytes, error);
}
else if (size > strlen (JPEG_SIGNATURE) &&
memcmp (data, JPEG_SIGNATURE, strlen (JPEG_SIGNATURE)) == 0)
{
return gdk_load_jpeg (bytes, error);
}
else
{
GInputStream *stream;