summaryrefslogtreecommitdiffstats
path: root/progs/egl/opengles1
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers.Chia-I Wu2010-04-101-5/+6
| | | | | | Update the warranty disclaimer to use the more general "THE AUTHORS OR COPYRIGHT HOLDERS". This is done manually on files created by me. Hope that I do not miss anything.
* progs/egl: Correctly check GL_OES_EGL_image.Chia-I Wu2010-04-061-1/+0
| | | | | The hack was added because GL_OES_EGL_image was not exported in the extension string.
* progs/egl: Fix the blank window in pbuffer demo.Chia-I Wu2010-04-061-1/+2
| | | | EGL requires eglSwapBuffers to be called on the current surface.
* progs/egl: Port drawtex and torus to eglut.Chia-I Wu2010-04-064-544/+125
| | | | | This brings the demos also to KMS and removes about 400 duplicated lines of code.
* progs/egl: Add an OpenGL ES demo for EGL_OES_image_pixmap.Chia-I Wu2010-04-042-0/+583
| | | | | The demo uses a Pixmap as its drawing area, and whatever is drawn on the pixmap will be used as a texture to draw a cube.
* progs/egl: Update .gitignore.Chia-I Wu2010-04-021-2/+4
|
* progs/egl: Link to eglut first.Chia-I Wu2010-04-021-3/+3
| | | | This moves eglut before EGL so that the symbols can be resolved.
* progs/egl: Port ES1 gears to eglut.Chia-I Wu2010-04-016-355/+28
| | | | | As gears in the last demo under "screen" subdirectory, this also removes the directory.
* progs/egl: Port ES1 tri to eglut.Chia-I Wu2010-04-014-427/+54
| | | | | This also removes EGL_MESA_screen_surface version of ES1 tri as eglut supports the extension.
* progs/es: Move OpenGL ES demos to subdirectories of progs/egl.Chia-I Wu2010-04-0116-0/+5393
Move progs/es1/xegl -> progs/egl/opengles1, progs/es1/screen -> progs/egl/opengles1/screen, progs/es2/xegl -> progs/egl/opengles2.