Small doc updates

This commit is contained in:
Nikolay Igotti
2017-03-27 19:38:20 +03:00
parent a6656a0cba
commit 8467fabf4d
4 changed files with 34 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
# OpenGL application
This example shows interaction with OpenGL library, to render classical 3D test model.
To build use `./build.sh` script without arguments (or specify `TARGET` variable if cross-compiling).
To run use
./OpenGlTeapot.kexe
It will render 3D model of teapot. Feel free to experiment with it, the whole power of OpenGL
is at your hands.
+18
View File
@@ -0,0 +1,18 @@
# Sockets demo
Compile the echo server (in EAP only supported on Mac host):
./build.sh
Run the server:
./EchoServer.kexe 3000 &
Test the server by conecting to it, for example with telnet:
telnet localhost 3000
Write something to console and watch server echoing it back.
~~Quit telnet by pressing ctrl+] ctrl+D~~
+1 -1
View File
@@ -1,4 +1,4 @@
#Tetris game
# Tetris game
This example shows implementation of simple Tetris game using SDL
(Simple DirectMedia Layer) library for rendering. SDL allows easy development