i915: Added EGL winsys
authorJakob Bornecrantz <jakob@tungstengraphics.com>
Wed, 14 May 2008 15:19:44 +0000 (17:19 +0200)
committerJakob Bornecrantz <jakob@tungstengraphics.com>
Wed, 14 May 2008 15:19:44 +0000 (17:19 +0200)
commitd07fbdd93941d5027a1aa7f0726140c6648a1e27
tree62676e18b9e027010269120ac4b0995d0d2e60b1
parentb0a58d526624485b98665b103fb5b507253b851b
i915: Added EGL winsys
28 files changed:
src/gallium/winsys/egl_drm/Makefile [new file with mode: 0644]
src/gallium/winsys/egl_drm/Makefile.template [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/Makefile [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/SConscript [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_batchbuffer.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_batchbuffer.h [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_context.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_context.h [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_egl.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_egl.h [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_lock.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_reg.h [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_screen.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_screen.h [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_swapbuffers.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_swapbuffers.h [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_winsys.h [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_winsys_i915.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_winsys_pipe.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/intel_winsys_softpipe.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/ws_dri_bufmgr.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/ws_dri_bufmgr.h [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/ws_dri_bufpool.h [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/ws_dri_drmpool.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/ws_dri_fencemgr.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/ws_dri_fencemgr.h [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/ws_dri_mallocpool.c [new file with mode: 0644]
src/gallium/winsys/egl_drm/intel/ws_dri_slabpool.c [new file with mode: 0644]