Added set_window_opacity function
This commit is contained in:
parent
613f9c2ba6
commit
f37f22fb5f
|
@ -313,6 +313,13 @@ static int f_fuzzy_match(lua_State *L) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int f_set_window_opacity(lua_State *L) {
|
||||||
|
double n = luaL_checknumber(L, 1);
|
||||||
|
int r = SDL_SetWindowOpacity(window, n);
|
||||||
|
lua_pushboolean(L, r > -1);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static const luaL_Reg lib[] = {
|
static const luaL_Reg lib[] = {
|
||||||
{ "poll_event", f_poll_event },
|
{ "poll_event", f_poll_event },
|
||||||
|
@ -328,6 +335,7 @@ static const luaL_Reg lib[] = {
|
||||||
{ "get_time", f_get_time },
|
{ "get_time", f_get_time },
|
||||||
{ "sleep", f_sleep },
|
{ "sleep", f_sleep },
|
||||||
{ "fuzzy_match", f_fuzzy_match },
|
{ "fuzzy_match", f_fuzzy_match },
|
||||||
|
{ "set_window_opacity", f_set_window_opacity },
|
||||||
{ NULL, NULL }
|
{ NULL, NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue