annotate lua/luadyncall/test/test_CocoaEssentials.lua @ 28:edbbd467f50a
python binding:
- update to dyncall 1.1
- Python 3 support (supports both, Python 2 and 3)
- using the Capsule API over PyCObject, when available
- support for python unicode strings (for both, Python 2 and 3)
- doc cleanup
ruby binding:
- doc cleanup
author |
Tassilo Philipp |
date |
Tue, 07 Apr 2020 21:16:37 +0200 |
parents |
0cfcc391201f |
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
|