From 63836f34d0405f8b4fe0d1afd9b5e04f00fccc95 Mon Sep 17 00:00:00 2001 From: Alexander Klingenbeck Date: Sat, 6 May 2023 11:18:54 +0200 Subject: [PATCH] wip bindings --- bindings.json | 4 ++++ src/quickjs.c | 1 + 2 files changed, 5 insertions(+) diff --git a/bindings.json b/bindings.json index 6fa0f43..c2edfdc 100644 --- a/bindings.json +++ b/bindings.json @@ -7,5 +7,9 @@ { "name": "BeginDrawing" }, { "name": "EndDrawing" } ] + }, + { + "name": "raylib_texture", + "functions": [] } ] \ No newline at end of file diff --git a/src/quickjs.c b/src/quickjs.c index 8ab1455..95fb7b5 100644 --- a/src/quickjs.c +++ b/src/quickjs.c @@ -5,6 +5,7 @@ #include "common.h" #include "bindings/js_raylib_core.h" +#include "bindings/_js_raylib_texture.h" static JSContext *JS_NewCustomContext(JSRuntime *rt); static int eval_buf(JSContext *ctx, const void *buf, int buf_len,