diff options
author | Eric Anholt <[email protected]> | 2008-06-18 14:19:18 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2008-06-18 14:19:18 -0700 |
commit | bbe80af457316826f56ada767d26e8c1db7f1130 (patch) | |
tree | 357f943cdac107a9cba37cf047b746b51adae7bb /src/mesa/drivers/dri/i915/Makefile | |
parent | 654258a4fe5e7114022c6e02f2844fc469fcc6f3 (diff) |
i915: Restore the accelerated PBO pixel path functions after GEM changes.
The fencing code is not required, and waiting on the fences defeated one of
the purposes of the extension, which is to allow asynchronous readpixels.
Diffstat (limited to 'src/mesa/drivers/dri/i915/Makefile')
-rw-r--r-- | src/mesa/drivers/dri/i915/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/i915/Makefile b/src/mesa/drivers/dri/i915/Makefile index 74f6169b2ea..ccba34d2293 100644 --- a/src/mesa/drivers/dri/i915/Makefile +++ b/src/mesa/drivers/dri/i915/Makefile @@ -6,11 +6,6 @@ LIBNAME = i915_dri.so MINIGLX_SOURCES = server/intel_dri.c -PIXEL_SOURCES = \ - intel_pixel.c \ - intel_pixel_read.c \ - intel_pixel_draw.c - DRIVER_SOURCES = \ i830_context.c \ i830_metaops.c \ @@ -48,6 +43,9 @@ DRIVER_SOURCES = \ intel_context.c \ intel_decode.c \ intel_ioctl.c \ + intel_pixel.c \ + intel_pixel_draw.c \ + intel_pixel_read.c \ intel_screen.c \ intel_span.c \ intel_state.c \ |