summaryrefslogtreecommitdiff
path: root/configs/linux-opengl-es
AgeCommit message (Collapse)AuthorFilesLines
2010-06-04mesa: remove PROGRAM_DIRS from config filesBrian Paul1-1/+0
2010-05-12rbug: Break out of traceJakob Bornecrantz1-1/+1
2010-05-07glapi: Move to src/mapi/.Chia-I Wu1-1/+2
Move glapi to src/mapi/{glapi,es1api,es2api}.
2010-04-27progs/egl: Add egl/eglut to PROGRAM_DIRS.Chia-I Wu1-1/+1
Make sure eglut is built before the demos. This should work more reliably with make -j<N>.
2010-04-01progs/es: Move OpenGL ES demos to subdirectories of progs/egl.Chia-I Wu1-1/+1
Move progs/es1/xegl -> progs/egl/opengles1, progs/es1/screen -> progs/egl/opengles1/screen, progs/es2/xegl -> progs/egl/opengles2.
2010-03-24gallium: Move egl drivers to targetsJakob Bornecrantz1-1/+2
Atteched output from git commit: rename src/gallium/{winsys/drm => targets}/Makefile.egl (100%) rename src/gallium/{winsys/drm/intel/egl => targets/egl-i915}/Makefile (86%) rename src/gallium/{winsys/drm/i965/egl => targets/egl-i915}/dummy.c (100%) rename src/gallium/{winsys/drm/i965/egl => targets/egl-i965}/Makefile (86%) rename src/gallium/{winsys/drm/intel/egl => targets/egl-i965}/dummy.c (100%) rename src/gallium/{winsys/drm/nouveau/egl => targets/egl-nouveau}/Makefile (88%) rename src/gallium/{winsys/drm/nouveau/egl => targets/egl-nouveau}/dummy.c (100%) rename src/gallium/{winsys/drm/radeon/egl => targets/egl-radeon}/Makefile (87%) rename src/gallium/{winsys/drm/radeon/egl => targets/egl-radeon}/dummy.c (100%) create mode 100644 src/gallium/targets/egl-swrast/Makefile create mode 100644 src/gallium/targets/egl-swrast/swrast_glue.c rename src/gallium/{winsys/drm/vmware/egl => targets/egl-vmwgfx}/Makefile (86%) rename src/gallium/{winsys/drm/swrast/egl => targets/egl-vmwgfx}/dummy.c (100%) delete mode 100644 src/gallium/winsys/drm/swrast/Makefile delete mode 100644 src/gallium/winsys/drm/swrast/core/Makefile delete mode 100644 src/gallium/winsys/drm/swrast/core/swrast_drm_api.c delete mode 100644 src/gallium/winsys/drm/swrast/egl/Makefile delete mode 100644 src/gallium/winsys/drm/vmware/egl/dummy.c
2010-03-24gallium: Remove GALLIUM_WINSYS_DRM_DIRSJakob Bornecrantz1-2/+1
2010-03-08gallium: introduce target directoryKeith Whitwell1-1/+1
Currently there are still at least two functions bundled up inside the winsys concept: a) that of a backend resource manager, sometimes capable of performing present() operations, b) the initialization code/routine for the whole driver stack. The inclusion of (b) makes it difficult to share implementations of (a) between different drivers. For instance, a clean xlib winsys could be of use for software-rasterized VG, GLES, EGL, etc, stacks. But that is only true as long as there is no dependency from the winsys to higher level code, as would be the case when we include (b) in this component. This change creates a new gallium/targets subtree, specifically for implementing the glue needed to build individual driver stacks, and moves that code out of a single example winsys, namely xlib. Other drivers continue to build unchanged, but hopefully can migrate to this structure over time.
2010-01-22st/egl_g3d: Rename to st/egl.Chia-I Wu1-2/+2
Simply the name to egl.
2010-01-22egl: Remove egl_softpipe.Chia-I Wu1-5/+3
With the addition egl_x11_swrast, egl_softpipe is sort of deprecated. The new driver serves the same purpose as egl_softpipe does. It is based on egl_g3d and provides more features.
2010-01-22st/egl: Remove the egl state tracker.Chia-I Wu1-1/+4
The egl_g3d state tracker has support for KMS, and the support is based on the egl state tracker. As egl_g3d provides more features, it should be better to keep only egl_g3d to unify the efforts.
2010-01-12mesa/es: Fix build issue after merge.Chia-I Wu1-1/+1
In cd6b8dd9e82fedc55d033131fbc0f8ee950567c8, color read/type fields are moved; Based on 068596c9a7e8d330ffdff8ad8700bd6093b5bdea and cc020425e929110613ddb405d3e82313d27a35ed, GLSL builtin library is autogenerated and GLSL libraries are built and used. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-11-10Update config linux-opengl-es.Chia-I Wu1-1/+7
Build demos that require EGL_MESA_screen_surface, and build egl_i915.so that supports EGL_MESA_screen_surface. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-11-06Add new config for OpenGL ES.Chia-I Wu1-0/+21
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>