summaryrefslogtreecommitdiff
path: root/src/opengl/bind/w.bind
blob: 6f5210c366a1176fc1b3b6fff33b7fff3b41aab9 (plain)
1
2
3
4
5
6
7
8
9
10
int glWaitSync_bind(lua_State *L)
{
	GLsync sync = luaL_checkinteger(L, 1);
	GLbitfield flags = luaL_checkinteger(L, 2);
	GLuint64 timeout = luaL_checkinteger(L, 3);
	glWaitSync(sync, flags, timeout);
	return 0;
}