Checkpoint of a super-simplified i915 driver in the pipe model.
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 8 Aug 2007 08:28:57 +0000 (09:28 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Wed, 8 Aug 2007 08:30:45 +0000 (09:30 +0100)
commit01c35b52a1fccbe4253a96b9c0506ef6c991e44f
treefd16af3036bf8333f8114f9eed15c6823f160965
parentddd30d8160dc7db5f24a5ac823fd1c64c43b50be
Checkpoint of a super-simplified i915 driver in the pipe model.

Doesn't yet compile, but when it does, it will only draw gouraud tris
and even those will be as simple as possible.  Needs some 'winsys' support
also before that can happen.
23 files changed:
src/mesa/pipe/i915simple/Makefile [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_batch.h [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_blit.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_blit.h [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_buffer.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_clear.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_context.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_context.h [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_debug.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_debug.h [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_prim_emit.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_reg.h [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_regions.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_regions.h [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_state.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_state.h [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_state_derived.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_state_draw.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_state_emit.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_state_fragprog.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_state_vertex.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_surface.c [new file with mode: 0644]
src/mesa/pipe/i915simple/i915_winsys.h [new file with mode: 0644]