render command ops

This commit is contained in:
2025-05-26 00:57:29 -05:00
parent 1141fca63a
commit 45311408d6
5 changed files with 1223 additions and 255 deletions

View File

@@ -190,7 +190,6 @@ TO = js2##TYPE(JS, val); \
JS_FreeValue(JS, val); } \
int js2bool(JSContext *js, JSValue v) { return JS_ToBool(js,v); }
static inline const char *js2cstring(JSContext *js, JSValue v) { return JS_ToCString(js,v); }
JSValue number2js(JSContext *js, double g) { return JS_NewFloat64(js,g); }
double js2number(JSContext *js, JSValue v) {