Sha256: ce0c24ed4ea5726f9141f30ffcf1aa9e4c0e4a920cf6742f773f5a63cd384a52
Contents?: true
Size: 410 Bytes
Versions: 119
Compression:
Stored size: 410 Bytes
Contents
#include "ImageProvider.h" extern "C" { void rho_platform_image_load_grayscale(const char* url, void** image_pixels, int* pwidth, int* pheight) { *image_pixels = 0; *pwidth = 0; *pheight = 0; CImageProvider::rho_platform_image_load_grayscale(url, image_pixels, pwidth, pheight); } void rho_platform_image_free(void* image_pixels) { CImageProvider::rho_platform_image_free(image_pixels); } };
Version data entries
119 entries across 119 versions & 3 rubygems