We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Raylib's LoadImageFromMemory seems absent from Jaylib functions. Too complex to port or in the works? If neither, I'll take a look at it.
The text was updated successfully, but these errors were encountered:
static Janet cfun_LoadImageFromBuffer(int32_t argc, Janet *argv) { janet_fixarity(argc, 2); const char *fileType = janet_getcstring(argv, 0); JanetBuffer* data = janet_getbuffer(argv, 1); Image *image = janet_abstract(&AT_Image, sizeof(Image)); *image = LoadImageFromMemory(fileType, data->data, data->count); return janet_wrap_abstract(image); }
c48b965
Sorry, something went wrong.
No branches or pull requests
Raylib's LoadImageFromMemory seems absent from Jaylib functions. Too complex to port or in the works? If neither, I'll take a look at it.
The text was updated successfully, but these errors were encountered: