diff options
author | Dave Airlie <airlied@redhat.com> | 2009-02-23 14:35:08 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-02-23 14:36:40 +1000 |
commit | cc2b7ffc85e2f89bd19502a480fa8633acec9fa8 (patch) | |
tree | 4e9438d909bff00e46e9d5886ff9378026f5d70e | |
parent | b283b22d0b8d277ab07da1a7bf583d8977a76268 (diff) |
radeon: do not use this flushing mechanism yet.
This flush seems to cause instability at the moment,
I can run glxgears on a cube now a lot better without this
-rw-r--r-- | libdrm/radeon/radeon_cs_gem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdrm/radeon/radeon_cs_gem.c b/libdrm/radeon/radeon_cs_gem.c index dc14a8ae7..dab1b7965 100644 --- a/libdrm/radeon/radeon_cs_gem.c +++ b/libdrm/radeon/radeon_cs_gem.c @@ -314,7 +314,7 @@ static int cs_gem_erase(struct radeon_cs *cs) static int cs_gem_need_flush(struct radeon_cs *cs) { - return (cs->relocs_total_size > (32*1024*1024)); + return 0; //(cs->relocs_total_size > (32*1024*1024)); } #define PACKET_TYPE0 0 |