mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Address review comments
This commit is contained in:
parent
653853062f
commit
d39bda76c4
9 changed files with 50 additions and 71 deletions
|
@ -1,7 +1,7 @@
|
|||
#include <stdint.h>
|
||||
#include <cairo/cairo.h>
|
||||
#include "cairo.h"
|
||||
#ifdef WITH_GDK_PIXBUF
|
||||
#ifdef HAVE_GDK_PIXBUF
|
||||
#include <gdk-pixbuf/gdk-pixbuf.h>
|
||||
#endif
|
||||
|
||||
|
@ -30,7 +30,7 @@ cairo_surface_t *cairo_image_surface_scale(cairo_surface_t *image,
|
|||
return new;
|
||||
}
|
||||
|
||||
#ifdef WITH_GDK_PIXBUF
|
||||
#ifdef HAVE_GDK_PIXBUF
|
||||
cairo_surface_t* gdk_cairo_image_surface_create_from_pixbuf(const GdkPixbuf *gdkbuf) {
|
||||
int chan = gdk_pixbuf_get_n_channels(gdkbuf);
|
||||
if (chan < 3) {
|
||||
|
@ -124,4 +124,4 @@ cairo_surface_t* gdk_cairo_image_surface_create_from_pixbuf(const GdkPixbuf *gdk
|
|||
cairo_surface_mark_dirty(cs);
|
||||
return cs;
|
||||
}
|
||||
#endif //WITH_GDK_PIXBUF
|
||||
#endif //HAVE_GDK_PIXBUF
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue