st/egl_g3d: New EGL state tracker that uses Gallium.
authorChia-I Wu <olvaffe@gmail.com>
Sun, 10 Jan 2010 17:23:01 +0000 (01:23 +0800)
committerChia-I Wu <olvaffe@gmail.com>
Tue, 12 Jan 2010 03:08:57 +0000 (11:08 +0800)
commit49381d63e61c724b156b76068058df1c01a906c2
tree1daa32a523bf23c027fc18e921bfe850ec7b220f
parent6dafd61ab278f23ecfebac7ef647610875abd2db
st/egl_g3d: New EGL state tracker that uses Gallium.

This new (intermediate) EGL state tracker is the base work for EGL
drivers that uses Gallium.  It makes it easier to support new window
systems.

Currently, there is support only for X11.  This driver supports multiple
APIs (OpenVG, OpenGL, ...) and supports hardware acceleration through
winsys/drm.

Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
20 files changed:
configs/autoconf.in
configs/default
configure.ac
src/gallium/state_trackers/egl_g3d/Makefile [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/common/egl_g3d.c [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/common/egl_g3d.h [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/common/egl_st.c [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/common/egl_st.h [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/common/native.h [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/common/st_public_tmp.h [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/x11/glxinit.c [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/x11/glxinit.h [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/x11/native_dri2.c [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/x11/native_x11.c [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/x11/native_x11.h [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/x11/native_ximage.c [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/x11/sw_winsys.c [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/x11/sw_winsys.h [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/x11/x11_screen.c [new file with mode: 0644]
src/gallium/state_trackers/egl_g3d/x11/x11_screen.h [new file with mode: 0644]