Mercurial > pub > dyncall > bindings
annotate lua/luadyncall/test/test_CocoaEssentials.lua @ 0:0cfcc391201f
initial from svn dyncall-1745
author | Daniel Adler |
---|---|
date | Thu, 19 Mar 2015 22:26:28 +0100 |
parents | |
children |
rev | line source |
---|---|
0 | 1 require"dynport" |
2 dynport("CocoaEssentials") | |
3 NSApplicationLoad () | |
4 dynport("SDL") | |
5 SDL_Init(SDL_INIT_VIDEO) | |
6 SDL_SetVideoMode(640,480,32,SDL_OPENGL) | |
7 dynport("GL") | |
8 quit = false | |
9 while not quit do | |
10 glClearColor(0,0,1,1) | |
11 glClear(GL.GL_COLOR_BUFFER_BIT) | |
12 SDL_GL_SwapBuffers() | |
13 end | |
14 |