Skip to content

Commit fd2eeb9

Browse files
committed
Merge branch 'bitmap_allocator_pixelref' into id_change_listener
# Conflicts: # include/xamarin/sk_managedpixelref.h # src/xamarin/sk_managedpixelref.cpp
2 parents 7003f97 + 9a7aedc commit fd2eeb9

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

include/c/sk_types.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,12 +343,15 @@ typedef struct sk_string_t sk_string_t;
343343
A sk_bitmap_t is an abstraction that specifies a raster bitmap.
344344
*/
345345
typedef struct sk_bitmap_t sk_bitmap_t;
346+
typedef struct sk_bitmapallocator_t sk_bitmapallocator_t;
346347
typedef struct sk_pixmap_t sk_pixmap_t;
347348
// placed here to help seperate in PR
348349
typedef struct sk_png_chunk_reader_t sk_png_chunk_reader_t;
349350
// placed here to help seperate in PR
350351
typedef struct sk_pixelref_t sk_pixelref_t;
351352
typedef struct sk_colorfilter_t sk_colorfilter_t;
353+
// placed here to help seperate in PR
354+
typedef struct sk_pixelref_t sk_pixelref_t;
352355
typedef struct sk_imagefilter_t sk_imagefilter_t;
353356
typedef struct sk_imagefilter_croprect_t sk_imagefilter_croprect_t;
354357

src/xamarin/SkiaKeeper.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@
5252

5353
// Xamarin
5454
#include "include/xamarin/sk_managedstream.h"
55+
// placed here to help seperate in PR
56+
#include "include/xamarin/sk_managedallocator.h"
57+
#include "include/xamarin/sk_managedpixelref.h"
5558
#include "include/xamarin/sk_manageddrawable.h"
5659
#include "include/xamarin/sk_managedpngchunkreader.h"
5760
#include "include/xamarin/sk_managedallocator.h"
@@ -114,6 +117,10 @@ void** KeepSkiaCSymbols (void)
114117
// Xamarin
115118
(void*)sk_compatpaint_new,
116119
(void*)sk_managedstream_new,
120+
// placed here to help seperate in PR
121+
(void*)sk_managedallocator_new,
122+
(void*)sk_managedpixelref_new,
123+
(void*)sk_managedpixelref_new_from_existing,
117124
(void*)sk_manageddrawable_new,
118125
(void*)sk_managedpngchunkreader_new,
119126
(void*)sk_managedallocator_new,

0 commit comments

Comments
 (0)