diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-01-30 13:43:59 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-01-30 15:44:44 +0000 |
commit | ed1c1a7468d78e99cb4f9a4a8b8a6b00c3257a75 (patch) | |
tree | 75a535f059853463972f157f28a14142e0051a4a /configure.ac | |
parent | d53d93ffa6e133f46c39595294ecf8e2182b5a68 (diff) |
sna: Track large objects and limit prefer-gpu hint to small objects
As the GATT is irrespective of actual RAM size, we need to be careful
not to be too generous when allocating GPU bo and their shadows. So
first of all we limit default render targets to those small enough to
fit comfortably in RAM alongside others, and secondly we try to only
keep a single copy of large objects in memory.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 63beb64d..e953ae53 100644 --- a/configure.ac +++ b/configure.ac @@ -132,6 +132,7 @@ required_pixman_version=0.24 if test "x$SNA" != "xno"; then required_xorg_xserver_version=1.10 AC_DEFINE(USE_SNA, 1, [Enable SNA support]) + AC_CHECK_HEADERS([sys/sysinfo.h]) fi AC_MSG_RESULT([$SNA]) |