summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/r600/drm/Makefile
diff options
context:
space:
mode:
authorJerome Glisse <jglisse@redhat.com>2010-12-09 13:07:10 -0500
committerJerome Glisse <jglisse@redhat.com>2010-12-09 16:07:01 -0500
commit15753cf54d57b1ebb0cd41b7dbb8030d23213891 (patch)
treefc98d4875b6a006f14d2c36acfc702178131c70c /src/gallium/winsys/r600/drm/Makefile
parentef534f3838f23d757a40426728789183ed36c3bb (diff)
r600g: avoid using pb* helper we are loosing previous cpu cycle with it
r600g is up to a point where all small CPU cycle matter and pb* turn high on profile. It's mostly because pb try to be generic and thus trigger unecessary check for r600g driver. To avoid having too much abstraction & too much depth in the call embedded everythings into r600_bo. Make code simpler & faster. The performance win highly depend on the CPU & application considered being more important on slower CPU and marginal/unoticeable on faster one. Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Diffstat (limited to 'src/gallium/winsys/r600/drm/Makefile')
-rw-r--r--src/gallium/winsys/r600/drm/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/winsys/r600/drm/Makefile b/src/gallium/winsys/r600/drm/Makefile
index a396205f89..91c65012c8 100644
--- a/src/gallium/winsys/r600/drm/Makefile
+++ b/src/gallium/winsys/r600/drm/Makefile
@@ -8,12 +8,12 @@ C_SOURCES = \
bof.c \
evergreen_hw_context.c \
radeon_bo.c \
- radeon_bo_pb.c \
radeon_pciid.c \
r600.c \
r600_bo.c \
r600_drm.c \
- r600_hw_context.c
+ r600_hw_context.c \
+ r600_bomgr.c
LIBRARY_INCLUDES = -I$(TOP)/src/gallium/drivers/r600 \
$(shell pkg-config libdrm --cflags-only-I)