diff options
author | sanine-a <sanine.not@pm.me> | 2020-12-16 23:34:37 -0600 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-12-16 23:34:37 -0600 |
commit | 5e54281d71d3ab4c1ba19888bb1aac9ad51673d0 (patch) | |
tree | 160c5bb300fa9b406cce9ceef5a4c9a608c07283 /src/texture.c | |
parent | 2263acad65be7c881e81f2dc845d4acaefb9603e (diff) |
add textures to cairo bindings
Diffstat (limited to 'src/texture.c')
-rw-r--r-- | src/texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/texture.c b/src/texture.c index 32240c6..4dbc8d1 100644 --- a/src/texture.c +++ b/src/texture.c @@ -36,7 +36,7 @@ static void setup_texture(lua_State* L, honey_texture** tex, bool use_params) /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -static int honey_lua_texture_new(lua_State* L) +int honey_lua_texture_new(lua_State* L) { honey_texture* texture; int choice = honey_lua_parse_arguments(L, 2, 0, 1, HONEY_TABLE, NULL); |