OSDN Git Service

identity: Add new identity driver
authorJakob Bornecrantz <jakob@vmware.com>
Wed, 24 Jun 2009 00:42:41 +0000 (02:42 +0200)
committerJakob Bornecrantz <jakob@vmware.com>
Wed, 24 Jun 2009 11:04:56 +0000 (13:04 +0200)
commitd60b2c68552a2729dfdb33c2bac4822453cf8ae2
tree678dd7ee49bb88884894682abd5517e065f1ca21
parentb8e638d4895d2d342306bb6443a455f73903ce20
identity: Add new identity driver

This driver does no transformation of the gallium calls
going to the real driver, like the identity matrix. It is
intended to be the basis for transforming and/or debug
drivers like trace and rbug.

Authors of this patch are:
Michal Krol, orignal heavy lifting.
José Fonesca, object wrapping code stolen from trace.
Jakob Bornecrantz, put it all toghether and renamed a stuff.
12 files changed:
SConstruct
configs/default
configure.ac
src/gallium/drivers/identity/Makefile [new file with mode: 0644]
src/gallium/drivers/identity/SConscript [new file with mode: 0644]
src/gallium/drivers/identity/id_context.c [new file with mode: 0644]
src/gallium/drivers/identity/id_context.h [new file with mode: 0644]
src/gallium/drivers/identity/id_objects.c [new file with mode: 0644]
src/gallium/drivers/identity/id_objects.h [new file with mode: 0644]
src/gallium/drivers/identity/id_public.h [new file with mode: 0644]
src/gallium/drivers/identity/id_screen.c [new file with mode: 0644]
src/gallium/drivers/identity/id_screen.h [new file with mode: 0644]