diff options
author | Dave Airlie <airlied@redhat.com> | 2009-11-25 13:24:44 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-11-25 13:24:44 +1000 |
commit | 8b28534bcf877557a5681fa3b4f107c74615d3de (patch) | |
tree | 966775fad507586c880dba6332d55fd58ede8155 /src/radeon.h | |
parent | f0acb16fa19844453adc6db3399977fba7c8a0db (diff) |
radeon/exa: change option to determine exa pixmap usage.
This moves to a boolean instead of using VRAM sizing.
as per Michel's suggestions on list.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/radeon.h')
-rw-r--r-- | src/radeon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon.h b/src/radeon.h index 4ee37b51..71357b3b 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -173,7 +173,7 @@ typedef enum { OPTION_PCIAPER_SIZE, #ifdef USE_EXA OPTION_ACCEL_DFS, - OPTION_EXA_LOW_VRAM, + OPTION_EXA_PIXMAPS, #endif #endif OPTION_IGNORE_EDID, @@ -898,6 +898,7 @@ typedef struct { Bool accelOn; Bool useEXA; #ifdef USE_EXA + Bool exa_pixmaps; Bool exa_force_create; XF86ModReqInfo exaReq; #endif @@ -1009,7 +1010,6 @@ typedef struct { uint64_t vram_size; uint64_t gart_size; drmmode_rec drmmode; - int exa_low_vram_threshhold_mb; #else /* fake bool */ Bool cs; |