.doc/ext/rays/native.cpp in rays-0.1.9 vs .doc/ext/rays/native.cpp in rays-0.1.10

- old
+ new

@@ -4,38 +4,48 @@ using namespace Rucy; void Init_rays (); + void Init_point (); void Init_bounds (); void Init_color (); void Init_color_space (); + void Init_bitmap (); void Init_texture (); void Init_image (); void Init_font (); void Init_shader (); + void Init_painter (); extern "C" void -Init_native () +#ifdef COCOAPODS + Init_rays_native () +#else + Init_native () +#endif { RUCY_TRY Rucy::init(); Init_rays(); + Init_point(); Init_bounds(); Init_color(); Init_color_space(); + Init_bitmap(); Init_texture(); Init_image(); Init_font(); Init_shader(); + Init_painter(); RUCY_CATCH }