ext/rays/native.cpp in rays-0.1.12 vs ext/rays/native.cpp in rays-0.1.13

- old
+ new

@@ -1,28 +1,29 @@ -#include <rucy.h> #include "defs.h" -using namespace Rucy; - - void Init_rays (); void Init_point (); void Init_bounds (); void Init_color (); void Init_color_space (); +void Init_matrix (); +void Init_polyline (); +void Init_polygon_line (); +void Init_polygon (); void Init_bitmap (); -void Init_texture (); void Init_image (); void Init_font (); void Init_shader (); void Init_painter (); +void Init_noise (); + extern "C" void #ifdef COCOAPODS Init_rays_native () #else Init_native () @@ -36,16 +37,21 @@ Init_point(); Init_bounds(); Init_color(); Init_color_space(); + Init_matrix(); + Init_polyline(); + Init_polygon_line(); + Init_polygon(); Init_bitmap(); - Init_texture(); Init_image(); Init_font(); Init_shader(); Init_painter(); + + Init_noise(); RUCY_CATCH }